From bc48f16228339d2435ef2138b1c8250789bdb87a Mon Sep 17 00:00:00 2001 From: Marcussjogren Date: Sat, 23 Aug 2025 00:04:36 +0200 Subject: [PATCH] =?UTF-8?q?Added=20an=20example=20of=20configuring=20Activ?= =?UTF-8?q?e=20Directory=20integration=20/Marcus=20Sj=C3=B6gren?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LDAP.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/LDAP.md b/LDAP.md index 1006aab..0a1d689 100644 --- a/LDAP.md +++ b/LDAP.md @@ -62,6 +62,15 @@ services: ### Example override file for Active Directory. It is important to understand that the LDAP configuration in netbox-docker does not work in the same way as it does in normal installation of Netbox. +For example, when configuring LDAP Group Types, the normal Netbox installation says that the environment variable should be: +''' +AUTH_LDAP_GROUP_TYPE = GroupOfNamesType() +''' + +But in netbox-docker it should be: +''' +AUTH_LDAP_GROUPTYPE = GroupOfNamesType +''' All config is handled / controlled in the file netbox/configuration/ldap/*.py. The file ldap_config.py does 99% and extra.py includes group handling functions.