Created
August 12, 2011 13:52
-
-
Save hilios/1142071 to your computer and use it in GitHub Desktop.
YSlow optimize DreamHost apache configuration (Gzip + Far late expire header)
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
<ifmodule mod_deflate.c> | |
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript | |
</ifmodule> | |
<IfModule mod_expires.c> | |
ExpiresActive On | |
ExpiresByType text/html M3600 | |
ExpiresByType text/css M3600 | |
ExpiresByType application/javascript M3600 | |
ExpiresByType image/bmp M3600 | |
ExpiresByType image/gif M3600 | |
ExpiresByType image/x-icon M3600 | |
ExpiresByType image/jpeg M3600 | |
ExpiresByType image/png M3600 | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment