IIS7 Compression
- by Thomas
Hi Guys,
I have searched around and havent really found an answer anywhere and this is still not working for me. I am using compression in IIS7 and it doesn't appear to be working. The code I am using is per
<urlCompression
doStaticCompression="true" />
<httpCompression
cacheControlHeader="max-age=86400"
sendCacheHeaders="true"
expiresHeader="true"
minFileSizeForComp="0"
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/javascript" enabled="true" />
<add mimeType="*/*" enabled="false" />
</staticTypes>
</httpCompression>
However my content is still not being gzipped ? Any ideas why this is happening ?
Cheers