Skip to content

Instantly share code, notes, and snippets.

@seanhandley
Last active October 12, 2015 14:16
Show Gist options
  • Save seanhandley/7240a2b98668a4977530 to your computer and use it in GitHub Desktop.
Save seanhandley/7240a2b98668a4977530 to your computer and use it in GitHub Desktop.
NginX GZIP
# ...
http {
# ...
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
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