Skip to content

Instantly share code, notes, and snippets.

@mateusneves
Created February 9, 2015 16:13
Show Gist options
  • Save mateusneves/bbb658e2a11968a337e7 to your computer and use it in GitHub Desktop.
Save mateusneves/bbb658e2a11968a337e7 to your computer and use it in GitHub Desktop.
Config for file expires
# Expires
<IfModule mod_expires.c>
# Enable expirations
ExpiresActive On
# Default directive
#ExpiresDefault "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
# CSS
ExpiresByType text/css "access 1 day"
# Javascript
ExpiresByType application/javascript "access plus 1 day"
</IfModule>
# END Expires
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment