Я пытаюсь перенести конфигурацию поиска аутентификации LDAP из старой установки в Apache 2.4. Я не очень хорошо разбираюсь в LDAP.
Все, что я получаю при запуске configtest, это сообщение об ошибке:
AH00526: Syntax error on line 130 of /file_path/ldapdir.conf:
Bad LDAP URL while parsing.
Это номер строки конца AuthLDAPURL
Что не так с этой строкой?
<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>
решение1
Попробуйте без ldaps:// в каждой строке (кроме первой):
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
как указано в документе:https://httpd.apache.org/docs/2.4/en/mod/mod_authnz_ldap.html#authldapurl
После этого вы можете проверить с помощью baskslashes, работает ли это.