Apache 中是否可以有两个“AuthType”指令?

Apache 中是否可以有两个“AuthType”指令?

我需要使用基本身份验证来保护我的网站,但我已经有了带有 shibboleth 的身份验证指令:

<Location />
  AuthType shibboleth
  ShibRequireSession Off
  require shibboleth
</Location>

我可以以某种方式添加基本身份验证吗?

答案1

我不明白如何同时使用 Shibboleth 和基本身份验证...Shibboleth 已经提供了自己的身份验证机制。您可能需要删除第一个。

<Location />
AuthType Basic
AuthName "Password Protected Area"
AuthUserFile /path/to/.htpasswd
Require valid-user
</Location>

现在,如果您不知道为什么 Shibboleth 在那里,您可能应该联系以前/当前的系统管理员,以确保您不会阻止一些以前允许的人访问该网站。

相关内容