これは私のweb.configで、IPアドレスをブロックするためのタグがいくつかあります
<configuration>
<connectionStrings>
...
</connectionStrings>
<appSettings>
....
</appSettings>
<runtime>
....
</runtime>
<system.webServer>
<security>
<ipSecurity allowUnlisted="false">
<clear/>
<add ipAddress="127.0.0.1" allowed="true"/>
<add ipAddress="83.116.19.53" allowed="true"/>
</ipSecurity>
</security>
</system.webServer>
</configuration>
私の意図は、上記以外の他の IP をブロックすることです。からウェブサイトにアクセスできるようにしたい唯一の IP アドレスは上記のとおりです。しかし、「ipSecurity」タグを使用すると、常に 500 - 内部サーバー エラーが発生し、それがなくてもサイトは正常に動作します。
サーバーに「IP とドメインの制限」がインストールされていることを確認しました。何か不足している場合はお知らせください。ありがとうございました。