Ich versuche, eine LDAP-Authentifizierungs-Lookup-Konfiguration von einer älteren Installation auf Apache 2.4 zu portieren. Ich bin nicht sehr gut mit LDAP vertraut.
Wenn ich einen Konfigurationstest ausführe, erhalte ich nur die Fehlermeldung:
AH00526: Syntaxfehler in Zeile 130 von /file_path/ldapdir.conf:
Ungültige LDAP-URL beim Parsen.
Dies ist die Zeilennummer am Ende der AuthLDAPURL
Was ist an dieser Zeile falsch?
<Directory "/usr/local/www/docs/it/snaps">
Options -Indexes +FollowSymLinks +ExecCGI +Includes
# Was
# Order deny,allow
# Deny from All
Require all denied
AuthName "Enter Your Netid and Password"
AuthType basic
AuthBasicProvider ldap
# Known obsolete directive
# AuthzLDAPAuthoritative off
AuthLDAPBindDN "cn=sanitycheck, ou=Service, dc=example, dc=com"
AuthLDAPBindPassword "xxxxxxx"
AuthLDAPURL "ldaps://server1.example.com:1636\
ldaps://server2.example.com:1636\
ldaps://server3.example.com:1636\
ldaps://server4.example.com:1636/dc=example,dc=com?uid?sub?(objectClass=*)" TLS
Require valid-user
Satisfy any
</Directory>
Antwort1
Versuchen Sie es ohne ldaps:// in jeder Zeile (außer der ersten):
AuthLDAPURL "ldaps://server1.example.com:1636 server2.example.com:1636 server3.example.com:1636 server4.example.com:1636/dc=example,dc=com?uid?sub?(objectClass=*)" TLS
wie im Dokument angegeben:https://httpd.apache.org/docs/2.4/en/mod/mod_authnz_ldap.html#authldapurl
Du kannst anschließend mit den Baskslashes testen, ob es funktioniert.