Gzip compression & iis express / iis?

Does anyone know why the following changes to web.conig will NOT work:

<httpCompression>
  <staticTypes>
    <add mimeType="application/javascript" enabled="true"/>
  </staticTypes>
<dynamicTypes>
  <add mimeType="application/javascript" enabled="true"/>
</dynamicTypes>
</httpCompression>

After I added that javascript files are still not compressed (gzip). I chased a couple of days because I really did not know what the problem was at first, but now I do it. If I modify applicationhost.config directly, although it works :

  <httpCompression directory="%TEMP%\iisexpress\IIS Temporary Compressed Files">
        <scheme name="gzip" dll="%IIS_BIN%\gzip.dll" />
        <dynamicTypes>
            <add mimeType="text/*" enabled="true" />
            <add mimeType="message/*" enabled="true" />
            <add mimeType="application/x-javascript" enabled="true" />
            <add mimeType="application/javascript" enabled="true" />
            <add mimeType="*/*" enabled="false" />
        </dynamicTypes>
        <staticTypes>
            <add mimeType="text/*" enabled="true" />
            <add mimeType="message/*" enabled="true" />
            <add mimeType="application/x-javascript" enabled="true" />
            <add mimeType="application/javascript" enabled="true" />
            <add mimeType="application/atom+xml" enabled="true" />
            <add mimeType="application/xaml+xml" enabled="true" />
            <add mimeType="*/*" enabled="false" />
        </staticTypes>
    </httpCompression>

It would be much easier to modify your web.config, then try to find out which applicationhost.config web server files are incorrect, but unfortunately it does not work.

IIS Express " ". javascript mimetype " application/javascript", javascript, " application/x-javascript". , IIS ( ) - .

+4
1

doDynamicCompression true urlCompression.

<urlCompression doDynamicCompression="true" />
0

All Articles