Skip to content

Instantly share code, notes, and snippets.

@Trustiko
Created February 21, 2014 21:29
Show Gist options
  • Save Trustiko/9143936 to your computer and use it in GitHub Desktop.
Save Trustiko/9143936 to your computer and use it in GitHub Desktop.
gzip on;
gzip_comp_level 2;
gzip_http_version 1.0;
gzip_proxied any;
gzip_min_length 1100;
gzip_buffers 16 8k;
gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
# Disable for IE < 6 because there are some known problems
gzip_disable "MSIE [1-6].(?!.*SV1)";
# Add a vary header for downstream proxies to avoid sending cached gzipped files to IE6
gzip_vary on;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment