I've added an Application in IIS Manager beneath the Default Web Server
. I want to confirm that the system.webServer
and system.web
settings in the application's web.config
are scoped to the application and have no effect on the settings of the Default Web Server
or on other applications. Is that correct?
For example, if windowsAuthentication
is enabled for this particular application, that setting will affect this application and only this application:
<system.web>
<authentication mode="Windows" />
<authorization>
<allow roles="myDomain\mySecurityGroup" />
<deny users="?" />
</authorization>
</system.web>
<system.webServer>
<security>
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
</security>
</system.webServer>