测试 nginx 版本: 1.14.0
// 开启 gzip
gzip on;
// 设置 http 1.0 生效,默认使用 proxy_pass 情况下,会使用 http 1.0 协议
gzip_http_version 1.0;
// 启用压缩,如果 header 中包含 “Last_Modified” 头信息,启用压缩
gzip_proxied no_last_modified;
// 当压缩类型为 html、css、js 时,开启压缩
gzip_types text/html text/css text/javascript;
网友评论