Last active
August 29, 2015 14:06
-
-
Save Jeavon/78d97083bacb75fd4064 to your computer and use it in GitHub Desktop.
Exclude Umbraco from IIS compression to avoid View load failure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<location path="umbraco"> | |
<system.webServer> | |
<urlCompression doStaticCompression="false" doDynamicCompression="false" dynamicCompressionBeforeCache="false" /> | |
</system.webServer> | |
</location> | |
<location path="App_Plugins"> | |
<system.webServer> | |
<urlCompression doStaticCompression="false" doDynamicCompression="false" dynamicCompressionBeforeCache="false" /> | |
</system.webServer> | |
</location> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this.