我在配置文件中调用此代码,以便在我将网站发布到Azure时阻止除我的所有IP地址。
<security>
<ipSecurity allowUnlisted="false" denyAction="NotFound">
<add allowed="true" ipAddress="98.214.211.202" subnetMask="255.255.0.0"/>
</ipSecurity>
</security>
当我将我的网站发布到Azure时,这可以阻止除我以外的所有人,但是当我从localhost启动网站进行调试时,它似乎阻止了我的开发机器。
我需要在允许的地址中包含哪些IP地址来解锁我的dev(localhost)计算机?
我尝试了'127.0.0.1'而没有运气