Hallo zusammen,
ich habe folgendes Problem:
Ich habe unseren Apache für die Authentifizierung ans AD angebunden, was auch prinzipiell funktioniert. Jetzt gibt es aber User, die Umlaute in ihrem Passwort haben und genau da klappt es nicht. Ich habe es mit dem Kerberos probiert, sowie mit LDAP (siehe Config). DefaultCharset von Apache ist auf UTF-8 gestellt. Hat jemand zufällig eine Idee, wo das Problem liegen könnte? Wie schon gesagt, mit "normalen" Passwörtern ist alles supi ☺.
Hier die Config:
Kerbeos:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <Directory "/opt/otrs/bin/cgi-bin/"> AllowOverride None AuthType Kerberos AuthName "OTRS" Krb5Keytab /etc/apache2/otrsserver.keytab KrbAuthRealms MYREAML KrbMethodNegotiate on KrbSaveCredentials off KrbLocalUserMapping On KrbMethodK5Passwd on Require valid-user Order allow,deny Allow from all </Directory> |
LDAP
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <Directory /> Options None AllowOverride None Order allow,deny Allow from all AuthName "Nagios Access" AuthType Basic AuthBasicProvider ldap AuthzLDAPAuthoritative On AuthLDAPBindDN MyDN AuthLDAPBindPassword MyPW AuthLDAPURL MyUrl require ldap-group FQDN </Directory> |
Vielen Dank