Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created March 3, 2013 09:11
Show Gist options
  • Save wullemsb/5075413 to your computer and use it in GitHub Desktop.
Save wullemsb/5075413 to your computer and use it in GitHub Desktop.
Enable json compression in IIS
<system.webServer>
<urlCompression doDynamicCompression="true" />
<httpCompression>
<dynamicTypes>
<add mimeType="application/json" enabled="true" />
<add mimeType="application/json; charset=utf-8" enabled="true" />
</dynamicTypes>
</httpCompression>
</system.webServer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment