Add a bunch of LDAP stuff to the default json file

This commit is contained in:
April King 2015-06-18 13:30:39 -05:00
Родитель d7c09eafb8
Коммит a5a2c85013
1 изменённых файлов: 22 добавлений и 3 удалений

Просмотреть файл

@ -1,5 +1,24 @@
{
"backend-api": {
"url": "http://minion-backend:8383"
}
"backend-api": {
"url": "http://minion-backend:8383"
},
"login": {
"type": "persona",
"ldap": {
"uri": "ldaps://ldap.server/",
"baseDN": "ou=test,dc=test_dc",
"emailAttribute": "mail",
"groupMembershipAttribute": "member",
"usernameAttribute": "uid",
"checkAuthorizedGroups": false,
"authorizedGroups": [
"ou=groupTest1,ou=test,dc=test_dc",
"ou=groupTest2,ou=test,dc=test_dc"
]
}
}
}