Hallo,
ich versuche gerade die LDAP Integration.
Leider bekomme ich es nicht. Ich bekomme immer die Fehlermeldung Unkown Error.
Hier meine Config:
Domain=MeineDomäne
LDAP_URL=ldap://ldapDomain.de -> Ich habe einen CName Eintrag in meinem lokalen DNS Server dafür erstellt
# LDAP base DN. Can be empty
LDAP_BASE=OU=USR,OU=User,DC=Domain,DC=de -> Dort Liegen meine Benutzer
# LDAP user DN. Do not specify this parameter for the anonymous bind
LDAP_BINDDN=CN=jitsi,OU=USR,OU=User,DC=Domain,DC=de -> Den Benutzer habe ich extra erstellt, für die "Baumstruktur" der AD
# LDAP user password. Do not specify this parameter for the anonymous bind
LDAP_BINDPW=BenutzerPasswort
# LDAP filter. Tokens example:
# %1-9 - if the input key is
user@domain.com, then %1 is com, %2 is domain and %3 is mail
# %s - %s is replaced by the complete service string
# %r - %r is replaced by the complete realm string
LDAP_FILTER=(sAMAccountName=%u)
# LDAP authentication method
LDAP_AUTH_METHOD=bind
# LDAP version
LDAP_VERSION=3
# LDAP TLS using
LDAP_USE_TLS=1
# List of SSL/TLS ciphers to allow
LDAP_TLS_CIPHERS=SECURE256:SECURE128:!AES-128-CBC:!ARCFOUR-128:!CAMELLIA-128-CBC:!3DES-CBC:!CAMELLIA-128-CBC
# Require and verify server certificate
LDAP_TLS_CHECK_PEER=0
# Path to CA cert file. Used when server certificate verify is enabled
LDAP_TLS_CACERT_FILE=/etc/ssl/certs/ca-certificates.crt - Wird das Zertifikat vom Server automatisch abgerufen, oder muss ich das Importieren?
# Path to CA certs directory. Used when server certificate verify is enabled
LDAP_TLS_CACERT_DIR=/etc/ssl/certs
# Wether to use starttls, implies LDAPv3 and requires ldap:// instead of ldaps://
LDAP_START_TLS=1
Ich danke euch für eure Hilfe