From 880678859b992f6d91fa34f044f563d053754d90 Mon Sep 17 00:00:00 2001 From: Marcussjogren Date: Sat, 23 Aug 2025 00:05:22 +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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/LDAP.md b/LDAP.md index 0a1d689..220790c 100644 --- a/LDAP.md +++ b/LDAP.md @@ -63,14 +63,14 @@ services: 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.