config: add LDAP configuration for LLDAP server at 192.168.84.107:3890

This commit is contained in:
Daniel Bedeleanu
2026-04-11 14:59:16 +03:00
parent c816cb4630
commit 7d821d1f7b

18
data/ldap_config.json Normal file
View File

@@ -0,0 +1,18 @@
{
"ldap_enabled": true,
"server_uri": "ldap://192.168.84.107:3890",
"use_tls": false,
"base_dn": "dc=example,dc=com",
"user_template": "cn={username},ou=people,dc=example,dc=com",
"groups_dn": "ou=groups,dc=example,dc=com",
"role_mappings": [
{
"group": "admin_group",
"role": "admin"
},
{
"group": "users",
"role": "user"
}
]
}