确保gzip_static被设置为on。 确认服务器环境是否支持gzip_static gzip_static依赖于Nginx的ngx_http_gzip_static_module。你需要确认你的Nginx版本是否包含了这个模块。可以通过运行nginx -V命令来检查Nginx的编译选项,看看是否包含了--with-http_gzip_static_module。
gzip on; // 开启gzip gzip_static on; // 开启gzip静态资源 gzip_comp_level 5; // 1-10,数值越大,压缩越狠,但越占用CPU时间,到达6左右,压缩已经不明显了 gzip_http_version 1.1 // 1.0或1.1,nginx默认HTTP 1.1 gzip_vary on; // 启用应答头"Vary: Accept-Encoding" gzip_types text/plain text/c...