我在EC2 Redhat Linux上运行apache。
服务器版本: Apache/2.2.15 Red Hat Enterprise Linux Server 6.4版(圣地亚哥)
我有ldap附加到它。我希望用户在web浏览器中输入我的应用程序url时不要输入id或密码。
有办法做到这一点吗?
这是我的httpd.conf
<location />
AuthType Basic
AuthBasicProvider ldap
AuthName "Web Console Authentication"
AuthLDAPBindDN <user>
AuthLDAPBindPassword <password>
AuthLDAPURL <ldapusl>
AuthUserFile /dev/null
require valid-user
</location>但是这需要用户输入ID和密码吗?
如果你需要任何信息,请告诉我。
谢谢你的帮助。
发布于 2014-02-27 05:51:51
根据您对评论的响应,您将需要使用mod_ntlm
https://stackoverflow.com/questions/22052132
复制相似问题