Does web.config run for an ASP.NET project differently when run in an Azure emulator?
By default, azure allows you to serve the My Images folder with a previous login, even with the following in my web.config file:
<authentication mode="Forms">
<forms loginUrl="~/login.aspx"
name=".ASPXFORMSAUTH"
cookieless="UseCookies"
timeout="30"
path="/"
slidingExpiration="true"/>
</authentication>
<authorization>
<allow users="?"/>
</authorization>
There is no <location tag in my web.config. When I run an ASP project alone, nothing is served in IIS, but when run under an Azure emulator, they are still served.
source
share