web.config单用户基本身份验证

时间:2013-07-15 18:05:42

标签: iis web-config

在nginx中,我可以创建一个发送

的身份验证响应 WWW-Authenticate:Basic realm =“Private Network”

导致登录单个用户/密码而不创建login.aspx

设置

    <security>
  <authentication  >
    <anonymousAuthentication enabled="true" userName="test" password="test" />
    <!--<basicAuthentication enabled="true" logonMethod="Batch" />-->
    <!--<windowsAuthentication enabled="true" />-->
  </authentication>
</security>

<authentication mode="Forms">
  <forms>
    <credentials passwordFormat="Clear">
      <user name="test" password="test" />
    </credentials>
  </forms>

</authentication>

  <location path="." >
<system.web>
  <authorization>
    <allow roles="admin" />
    <deny users="*"/>
  </authorization>
</system.web>

然而,这些设置不断将我带到login.aspx,这是不成文的。

我的目标是为一个用户创建一个简单的u / p身份验证,而无需使用登录页面或更复杂的身份验证。

0 个答案:

没有答案