是否可以通过.htaccess
使用MAMP进行LDAP身份验证?
我认为我需要包含/启用Apache-Module但是#39;我不知道该怎么做?
感谢您的帮助!
答案 0 :(得分:-1)
启用它
a2enmod authnz_ldap
a2enmod ldap
/etc/init.d/apache2 restart
在htaccess中你使用
AuthType Basic
AuthName "secured site"
AuthBasicProvider ldap
AuthLDAPUrl "ldap://server/ou=People,dc=example,dc=local"
AuthLDAPBindDN "cn=reader,dc=example,dc=local"
AuthLDAPBindPassword the_secret_one
AuthzLDAPAuthoritative Off
Require valid-user