Skip to content

Instantly share code, notes, and snippets.

@Luis-Palacios
Created June 9, 2015 04:33
Show Gist options
  • Save Luis-Palacios/fa68c1c1c1012db27f14 to your computer and use it in GitHub Desktop.
Save Luis-Palacios/fa68c1c1c1012db27f14 to your computer and use it in GitHub Desktop.
Nginx gzip settings
gzip on;
gzip_http_version 1.0;
gzip_proxied any;
gzip_min_length 500;
gzip_disable "MSIE [1-6]\.";
gzip_vary on;
gzip_comp_level 6;
# gzip_buffers 16 8k;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment