1
我需要在我的Windows Azure網站上阻止除IP範圍以外的所有內容,但不幸的是我無法真正弄清楚它。Windows Azure網站 - 阻止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>
我搜索了一個解決方案,但不能得到任何工作。 我可以看到ipSecurity需要在ApplicationHost.config中解鎖,但我無法弄清楚如何在他們的Azures網站解決方案中執行此操作。
所以我真的希望有人能幫助我或進一步解決問題。
問題是關於Azure網站,而不是Azure雲服務。這仍然是一個很好的答案,但不是這個問題。 – Carl