Skip to content

Instantly share code, notes, and snippets.

@prawin
Created September 18, 2013 11:43
Show Gist options
  • Save prawin/6607985 to your computer and use it in GitHub Desktop.
Save prawin/6607985 to your computer and use it in GitHub Desktop.
nginx compression settings
location ~ ^/(assets)/ {
root /path/to/assets/folder/;
gzip on;
gzip_static on;
gzip_http_version 1.1;
gzip_disable "msie6";
gzip_vary on;
gzip_min_length 10;
gzip_buffers 64 8k;
gzip_comp_level 3;
gzip_proxied any;
gzip_types text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript;
expires max;
add_header Cache-Control public;
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment