I have the following gzip
configuration at the nginx.conf
file:
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/javascript text/xml application/xml application/xml+rss text/javascript;
and the problem is that it is compressing tar.gz
archives but I don't understand why since their mime-type is application/x-gzip
.
How could I possible fix this without fulling remove the gzip
? Thanks!