21 lines
532 B
JSON
21 lines
532 B
JSON
{
|
|
"_comment": "Copy this file to ldap_config.json and fill in real values. NEVER commit ldap_config.json to Git.",
|
|
"ldap_enabled": false,
|
|
"server_uri": "ldap://YOUR_LDAP_SERVER_IP:389",
|
|
"base_dn": "dc=yourdomain,dc=com",
|
|
"user_template": "cn={username},ou=people,dc=yourdomain,dc=com",
|
|
"groups_dn": "ou=groups",
|
|
"use_tls": false,
|
|
"ignore_cert": false,
|
|
"role_mappings": [
|
|
{
|
|
"group": "inventory_admins",
|
|
"role": "admin"
|
|
},
|
|
{
|
|
"group": "inventory_users",
|
|
"role": "user"
|
|
}
|
|
]
|
|
}
|