Created
February 8, 2016 10:49
-
-
Save jamescoxhead/7ef086b7e6639ba26c6c to your computer and use it in GitHub Desktop.
IIS URL Compression for SVG and fonts (under C:\Windows\System32\inetsrv\config)
This file contains hidden or 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
<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" /> | |
<!-- HERE --> | |
<add mimeType="image/svg+xml" enabled="true" /> | |
<add mimeType="application/x-font-ttf" enabled="true" /> | |
<add mimeType="application/octet-stream" enabled="true" /> | |
<!-- HERE --> | |
</staticTypes> | |
<dynamicTypes> | |
<add mimeType="text/*" enabled="true" /> | |
<add mimeType="message/*" enabled="true" /> | |
<add mimeType="application/x-javascript" enabled="true" /> | |
<add mimeType="*/*" enabled="false" /> | |
<!-- HERE --> | |
<add mimeType="image/svg+xml" enabled="true" /> | |
<add mimeType="application/x-font-ttf" enabled="true" /> | |
<add mimeType="application/octet-stream" enabled="true" /> | |
<!-- HERE --> | |
</dynamicTypes> | |
</httpCompression> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank's