Skip to content

Instantly share code, notes, and snippets.

@weivall
Created May 24, 2012 10:38
Show Gist options
  • Save weivall/2780773 to your computer and use it in GitHub Desktop.
Save weivall/2780773 to your computer and use it in GitHub Desktop.
mod_expires
FileETag MTime Size
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/x-javascript
<ifModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 seconds"
ExpiresByType text/html "access plus 1 seconds"
ExpiresByType image/x-icon "access plus 2592000 seconds"
ExpiresByType image/gif "access plus 2592000 seconds"
ExpiresByType image/jpeg "access plus 2592000 seconds"
ExpiresByType image/png "access plus 2592000 seconds"
ExpiresByType text/css "access plus 604800 seconds"
ExpiresByType text/javascript "access plus 216000 seconds"
ExpiresByType application/x-javascript "access plus 216000 seconds"
</ifModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment