What is <location path = "web.config"> for?
What's the point:
<location path="web.config">
Will the following web.config file (located in the root directory of the web application) doDynamicCompression be set to true or false?
<configuration>
<system.webServer>
<urlCompression doDynamicCompression="true" />
</system.webServer>
...
<location path="web.config">
<system.webServer>
<urlCompression doDynamicCompression="false" />
</system.webServer>
</location>
</configuration>
+3