Added an example of configuring Active Directory integration /Marcus Sjögren

Marcussjogren 2025-08-23 00:04:36 +02:00
parent a9ee1434bf
commit bc48f16228

@ -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.