simple proxmox

This commit is contained in:
2020-08-26 15:41:37 -04:00
parent f7cee0239e
commit f18967ce8b
26 changed files with 964 additions and 2504 deletions

View File

@ -3,13 +3,27 @@
module.exports = {
userModel: 'ldap', // pam, redis, ldap
ldap: {
url: 'ldap://192.168.1.54:389',
bindDN: 'cn=admin,dc=theta42,dc=com',
url: 'ldap://192.168.1.55:389',
bindDN: 'cn=ldapclient service,ou=people,dc=theta42,dc=com',
bindPassword: '__IN SRECREST FILE__',
userBase: 'ou=people,dc=theta42,dc=com',
groupBase: 'ou=groups,dc=theta42,dc=com',
userFilter: '(objectClass=posixAccount)',
userNameAttribute: 'uid'
},
SENDGRID_API_KEy: '__IN SRECREST FILE__',
p2p: {
listenPort: 7575
},
proxmox: {
host: "__IN SRECREST FILE__",//this can be an ip or FQDN
authInfo: {
username: "__IN SRECREST FILE__",//this must include the username@realm
apiToken: "__IN SRECREST FILE__"//In the future, i would like this to be encrypted
},
},
vpnSite: {
id: "__IN SRECREST FILE__",
name: "__IN SRECREST FILE__",
admin: "__IN SRECREST FILE__"
}
};