Add auth-ldap-user-dn-template in ldap_config.py

This commit is contained in:
Nicolas Boufidjeline 2018-07-11 16:50:02 +02:00
parent 48accce8e6
commit 4c49cad744
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,9 @@ AUTH_LDAP_CONNECTION_OPTIONS = {
AUTH_LDAP_BIND_DN = os.environ.get('AUTH_LDAP_BIND_DN', '')
AUTH_LDAP_BIND_PASSWORD = os.environ.get('AUTH_LDAP_BIND_PASSWORD', '')
# Set AUTH_LDAP_USER_DN_TEMPLATE
AUTH_LDAP_USER_DN_TEMPLATE = os.environ.get('AUTH_LDAP_USER_DN_TEMPLATE', '')
# Include this setting if you want to ignore certificate errors. This might be needed to accept a self-signed cert.
# Note that this is a NetBox-specific setting which sets:
# ldap.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, ldap.OPT_X_TLS_NEVER)