kaiwa/Docker/app/config/dev_config.json

29 lines
759 B
JSON
Raw Normal View History

2015-04-01 04:56:40 -04:00
{
"isDev": true,
"http": {
"baseUrl": "http://localhost:8000",
"port": 8000,
"key": "./fakekeys/privatekey.pem",
"cert": "./fakekeys/certificate.pem"
},
"session": {
"secret": "shhhhhh don't tell anyone ok?"
},
"server": {
"name": "{{XMPP_NAME}}",
"domain": "{{XMPP_DOMAIN}}",
"wss": "{{XMPP_WSS}}",
"muc": "{{XMPP_MUC}}",
"startup": "{{XMPP_STARTUP}}",
"admin": "{{XMPP_ADMIN}}"
},
"ldap": {
"address": "{{LDAP_HOST}}",
"user": "{{LDAP_DN}}",
"password": "{{LDAP_PWD}}",
2015-05-07 10:57:40 -04:00
"base": "{{LDAP_USER_BASE}}",
2015-04-01 04:56:40 -04:00
"filter": "objectClass=person",
2015-05-07 10:57:40 -04:00
"group": "cn={{LDAP_GROUP}},{{LDAP_GROUP_BASE}}"
2015-04-01 04:56:40 -04:00
}
}