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.