Skip to content

Instantly share code, notes, and snippets.

@zigomir
Created March 19, 2014 19:56
Show Gist options
  • Save zigomir/9649934 to your computer and use it in GitHub Desktop.
Save zigomir/9649934 to your computer and use it in GitHub Desktop.
apache caching

Resource

a2enmod expires
service apache2 restart

vim /etc/apache2/sites-available/site.conf
<IfModule mod_expires.c>
  <FilesMatch "\.(jpe?g|png|gif|js|css)$">
    ExpiresActive On
    ExpiresDefault "access plus 1 year"
  </FilesMatch>
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment