Skip to content

Instantly share code, notes, and snippets.

@Jeavon
Last active August 29, 2015 14:06
Show Gist options
  • Save Jeavon/78d97083bacb75fd4064 to your computer and use it in GitHub Desktop.
Save Jeavon/78d97083bacb75fd4064 to your computer and use it in GitHub Desktop.
Exclude Umbraco from IIS compression to avoid View load failure
<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>
@ryanlewis
Copy link

Thanks for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment