我正在尝试设置一个也执行 LDAP 基本身份验证的 Apache 代理:
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ProxyPass / http://localhost:8080/ nocanon
ProxyPassReverse / http://localhost:8080/
ProxyPreserveHost On
ProxyRequests Off
AllowEncodedSlashes NoDecode
RequestHeader set X-Forwarded-Proto "https"
RequestHeader set X-Forwarded-Port "443"
<Location />
AuthType Basic
AuthName "LDAP Login for access"
AuthBasicProvider ldap
AuthLDAPBindDN USER@DOMAIN
AuthLDAPBindPassword PASSWORD
AuthLDAPURL ldaps://FQDN:636/CN=..,OU=..?uid?sub
Require valid-user
</Location>
ProxyPass 在没有 AuthType Basic 部分的情况下工作,但是,如果结合使用,BasicAuth 会要求提供凭据,然后服务器会抛出 500 错误,而不会在他的 error.log 中登录任何东西
我错过了什么吗?
此配置对我有用:
似乎命令的顺序是相关的。