Skip to content

Instantly share code, notes, and snippets.

@ebot
Created February 20, 2009 03:09
Show Gist options
  • Select an option

  • Save ebot/67276 to your computer and use it in GitHub Desktop.

Select an option

Save ebot/67276 to your computer and use it in GitHub Desktop.
Default compression and expires settings for performance and YSlow
# Default compression and expires settings for performance and YSlow
# Set compression
SetOutputFilter DEFLATE
AddOutputFilter DEFLATE css js
AddType text/javascript .js
AddType text/css .css
### turn on the Expires engine
ExpiresActive On
### default expires after a month in the client's cache
ExpiresByType application/x-javascript "access plus 7 days"
ExpiresByType text/css "access plus 3 days"
ExpiresDefault "access plus 1 month"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment