Created
January 30, 2014 14:27
-
-
Save purcell/8709493 to your computer and use it in GitHub Desktop.
nginx gzip snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gzip on; | |
gzip_vary on; | |
gzip_disable "msie6"; | |
gzip_comp_level 3; | |
gzip_buffers 16 8k; | |
gzip_min_length 150; | |
gzip_proxied any; | |
gzip_types text/plain text/xhtml text/css text/js text/csv application/javascript application/x-javascript application/json application/xml text/xml application/atom+xml application/rss+xml; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment