CentOS 为Apache 使用LDAP 身份验证
Apache 中可以通过mod_authz_ldap 模块为LDAP 提供了良好的的支持。
(1)安装Aache 支持LDAP 身份验证的模块
#yum –y install mod_authz_ldap
(2) 编辑/etc/httpd/conf.d/authz_ladp.conf 文件,在<IFModule mod_authz_ldap.c>语句下增加一下内容(假设:/var/phpmyadmin 目录存放的网站使用LDAP身份验证)。
<Directory /var/phpmyadmin>
AuthzLDAPServer 192.168.2.100
AuthzLDAPUserBase ou=People,dc=example,dc=com
AuthzLDAPUserKey uid
AuthzLDAPUserScope base
AuthType basic
AuthName “This is Test LDAP Auth”
Require valid-user
</Directory>
推荐阅读:
相关推荐
Gexrior 2020-09-29
harddays 2020-06-25
80337960 2020-06-10
huaqiangli 2020-06-09
wenwst 2020-05-12
tomson 2020-03-27
wenwst 2020-02-25
SZStudy 2020-01-31
就是那个胖子 2019-12-18
蒜蓉粉丝蒸扇贝 2019-12-18
代码之源 2008-08-10
窃破天道 2019-11-04
milu 2011-08-09
81971834 2010-09-30
FiredFish 2009-09-04
BearStarX 2019-04-04
farwang 2010-11-07
WilliamLin 2010-04-16