Change default user/search DNs

This commit is contained in:
PCoder 2019-02-04 19:59:41 +01:00
parent b0a09969ec
commit 67c1dcb1f3
1 changed files with 2 additions and 2 deletions

View File

@ -212,7 +212,7 @@ LOGGING = {
LDAP_SEARCH_BASE=config(
'LDAP_SEARCH_BASE',
default='ou=users,dc=ungleich,dc=ch'
default='ou=customer,dc=ungleich,dc=ch'
)
LDAP_MAX_UID_PATH = os.path.join(
@ -226,7 +226,7 @@ LDAP_DEFAULT_START_UID = config(
'LDAP_DEFAULT_START_UID', cast=int, default=10000
)
LDAP_USER_DN = config('LDAP_USER_DN', default='ou=users,dc=ungleich,dc=ch')
LDAP_USER_DN = config('LDAP_USER_DN', default='ou=customer,dc=ungleich,dc=ch')
if config('ENABLE_DEBUG_LOG', cast=bool, default=False):
loggers_dict = {}