forked from GluuFederation/agama-ldap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
34 lines (34 loc) · 1.12 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"org.gluu.agama.ldap.pw.main": {
"lockConfig": {
"MAX_LOGIN_ATTEMPT": 6,
"ENABLE_LOCK": true,
"LOCK_EXP_TIME": 180
},
"useInternalLdapConfig": false,
"serversConfig": [
{
"configId": "ad_1",
"bindDN": "cn=directory manager",
"bindPassword": "encoded_password/plain_passowrd",
"servers": ["localhost:1389"],
"maxConnections": 3,
"useSSL": false,
"baseDNs": ["ou=people,o=jans"],
"loginAttributes": ["uid"],
"localLoginAttributes": ["uid"]
},
{
"configId": "ad_2",
"servers": ["localhost:2389"],
"bindDN": "cn=directory manager",
"bindPassword": "encoded_password/plain_passowrd",
"useSSL": false,
"maxConnections": 3,
"baseDNs": ["ou=people,o=jans"],
"loginAttributes": ["mail"],
"localLoginAttributes": ["mail"]
}
]
}
}