secrets template

This commit is contained in:
William Mantly 2020-08-28 17:48:27 -04:00
parent 0de20c5d89
commit 9c133fed62
Signed by: wmantly
GPG Key ID: 186A8370EFF937CA
2 changed files with 29 additions and 1 deletions

View File

@ -3,7 +3,7 @@
module.exports = { module.exports = {
userModel: 'ldap', // pam, redis, ldap userModel: 'ldap', // pam, redis, ldap
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', bindDN: 'cn=ldapclient service,ou=people,dc=theta42,dc=com',
bindPassword: '__IN SRECREST FILE__', bindPassword: '__IN SRECREST FILE__',
userBase: 'ou=people,dc=theta42,dc=com', userBase: 'ou=people,dc=theta42,dc=com',

View File

@ -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: "___"
}
};