First of all make sure that dynamic compression is enabled and configured in IIS.
Afterwards you just have to add the following section to your IIS config(located at %WinDir%\System32\inetsrv\config\applicationHost.config):
Afterwards you just have to add the following section to your IIS config(located at %WinDir%\System32\inetsrv\config\applicationHost.config):
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> |
Maybe it should work too if you add this to your web.config, but I couldn’t get this working.