Skip to content

Instantly share code, notes, and snippets.

@omniosi
Created August 6, 2014 17:07
Show Gist options
  • Save omniosi/c8ce4cec23e1c852d5f6 to your computer and use it in GitHub Desktop.
Save omniosi/c8ce4cec23e1c852d5f6 to your computer and use it in GitHub Desktop.
enabling gzip?
<IfModule mod_deflate.c>
# Insert filter
SetOutputFilter DEFLATE
# Don't compress images
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment