29 lines
458 B
Plaintext
29 lines
458 B
Plaintext
'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: "___"
|
|
}
|
|
};
|