在nginx中,我可以创建一个发送
的身份验证响应导致登录单个用户/密码而不创建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身份验证,而无需使用登录页面或更复杂的身份验证。