-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.json
49 lines (49 loc) · 1.64 KB
/
project.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"projectName": "agama-ldap",
"description": "Agama-LDAP-PW provides flow to password authenticate a person on remote LDAP server.",
"type": "community",
"author": "GluuFederation",
"version": "1.0.1",
"authorWebsite": "https://github.com/GluuFederation/agama-ldap",
"githubUri": "https://github.com/GluuFederation/agama-ldap",
"license": "apache-2.0",
"lastUpdated": "1701444220485",
"tags": [
"authentication",
"authorization",
"jans"
],
"noDirectLaunch": [],
"configs": {
"org.gluu.agama.ldap.pw.main": {
"MAX_LOGIN_ATTEMPT": "6",
"ENABLE_LOCK": "true",
"LOCK_EXP_TIME": "180",
"serversConfig": [
{
"configId": "ad_1",
"bindDN": "cn=directory manager",
"bindPassword": "encoded_pass",
"servers": ["localhost:1389"],
"maxConnections": 3,
"useSSL": false,
"baseDNs": ["ou=people,o=gluu"],
"loginAttributes": ["uid"],
"localLoginAttributes": ["uid"]
},
{
"configId": "ad_2",
"servers": ["localhost:2389"],
"bindDN": "cn=directory manager",
"bindPassword": "encoded_pass",
"useSSL": false,
"maxConnections": 3,
"baseDNs": ["ou=people,o=gluu"],
"loginAttributes": ["mail"],
"localLoginAttributes": ["mail"]
}
]
}
},
"name": "agama-ldap"
}