MIMEタイプapplication/json
の動的圧縮を有効にしようとしています。
ApplicationHost.configで、次の変更を加えました。
<section name="httpCompression" allowDefinition="AppHostOnly" overrideModeDefault="Allow" />
また、次のコマンドでセクションのロックを解除してみました。
appcmd unlock config /section:system.webserver/httpcompression
私のweb.config設定(applicationHost.configと同じですが、mimetypeが追加されています):
<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
<scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" />
<staticTypes>
<add mimeType="text/*" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/x-javascript" enabled="true" />
<add mimeType="application/atom+xml" enabled="true" />
<add mimeType="application/xaml+xml" enabled="true" />
<add mimeType="*/*" enabled="false" />
</staticTypes>
<dynamicTypes>
<add mimeType="text/*" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/x-javascript" enabled="true" />
<add mimeType="application/json" enabled="true" />
<add mimeType="*/*" enabled="false" />
</dynamicTypes>
</httpCompression>
しかし、応答はgzip圧縮されていません。 mimetypeを直接applicationHost.configに追加すると機能するため、設定が正しいことはわかっています。
Failed Request Tracingを有効にしましたが、エラーは発生しません。
MIMEタイプも追加してみてください。
<add mimeType="application/json; charset=utf-8" enabled="true" />
同じ問題、つまりIIS(私の場合はIIS 10))をgzip application/json
に取得しようとしていますが、回避策を発見しました。
ApplicationHost.configとweb.configを編集してみましたが、うまくいきませんでした。 IISは、.jsonデータの圧縮設定を単に無視します。ただし、他のMIMEタイプをgzipして、圧縮すると伝えます。したがって、web.configでMIMEタイプをtext/json
に変更しました。私は応答をgzip圧縮しました:
<system.webServer>
<staticContent>
<remove fileExtension=".json" />
<mimeMap fileExtension=".json" mimeType="text/json" />
</staticContent>
<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
<scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll"/>
<dynamicTypes>
<add mimeType="text/json" enabled="true"/>
</dynamicTypes>
<staticTypes>
<add mimeType="text/json" enabled="true"/>
</staticTypes>
</httpCompression>
<urlCompression doStaticCompression="true" doDynamicCompression="true"/>
</system.webServer>
もちろん、それは他のものを壊すかもしれません-あなたの応答がContent-Type:text/json
を持っているので
IIS 10を使用する場合にのみ、web.configからのHttpCompressionが可能です。IIS 7.5では、appHost.configで使用する必要があります。
その情報が見つかるまで、私も戦いました (この投稿について )。