Windows Azure の Web サイトで IP 範囲以外のすべてをブロックする必要がありますが、残念ながらそれがわかりません。
私の Web.config は次のようになります。
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
</staticContent>
<security>
<ipSecurity allowUnlisted="false"><!-- this line blocks everybody, except those listed below -->
<clear/><!-- removes all upstream restrictions -->
<add ipAddress="127.0.0.1" allowed="true"/>
<add ipAddress="MY IP" subnetMask="255.255.255.0" allowed="true"/>
</ipSecurity>
</security>
解決策を探しましたが、何も機能しませんでした。ApplicationHost.config で ipSecurity のロックを解除する必要がありますが、Azure の Web サイト ソリューションでこれを行う方法がわかりません。
だから、誰かが私を助けてくれたり、解決策を教えてくれることを本当に願っています。