最佳答案
Nginx gzip 不压缩所有 JavaScript 文件。
CSS 文件正在工作。
在我的 nginx.conf
中,我有以下几句台词:
gzip on;
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
gzip_proxied any;
gzip_buffers 16 8k;
gzip_types text/plain application/x-javascript text/xml text/css;
gzip_vary on;