diff --git a/nodejs/conf/base.js b/nodejs/conf/base.js index 85447d1..d57a431 100644 --- a/nodejs/conf/base.js +++ b/nodejs/conf/base.js @@ -3,7 +3,7 @@ module.exports = { userModel: 'ldap', // pam, redis, ldap ldap: { - url: 'ldap://192.168.1.55:389', + 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', diff --git a/nodejs/conf/secrets.js__template b/nodejs/conf/secrets.js__template new file mode 100644 index 0000000..5d1fbca --- /dev/null +++ b/nodejs/conf/secrets.js__template @@ -0,0 +1,28 @@ +'use strict'; + +module.exports = { + ldap: { + url: 'ldap://192.168.1.55:389', + bindPassword: '____', + }, + p2p: { + peers: [ + '10.4.0.1:7575' + ] + }, + proxmox: { + host: "__", + authInfo: { + username: "__",//this must include the username@realm + + // Fill in password or apiToken, not both. + // password: "___" + // apiToken: "___"//In the future, i would like this to be encrypted + }, + }, + vpnSite: { + id: "_", + name: "____", + admin: "___" + } +};