5

nginxでは、送信する認証応答を作成できます

WWW-Authenticate:Basic realm="プライベート ネットワーク"

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>
</location>

ただし、これらの設定により、書き込まれていない login.aspx に移動し続けます。

私の目標は、ログイン ページやより複雑な認証に頼ることなく、1 人のユーザーに対して単純な u/p 認証を作成することです。

4

0 に答える 0