What is the meaning of:
<location path="web.config">
With the following web.config file (located in the root of the web app) will 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>