Created
May 24, 2014 19:48
-
-
Save evemilano/77517a6e815b62ed6604 to your computer and use it in GitHub Desktop.
Abilitare GZIP su NGINX via HTACCESS
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_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
https://www.evemilano.com/2014/05/abilitare-gzip-su-wordpress-via-htaccess/