Created
March 3, 2013 09:11
Enable json compression in IIS
This file contains 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
<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