ngx_http_gzip_module
模块功能
用gzip方法压缩响应数据,节约带宽
1、gzip on | off;
启用或禁用gzip压缩
可用位置:http, server, location, if in location
2、gzip_comp_level level;
压缩比由低到高:1 到9默认:1
可用位置:http, server, location
3、gzip_disable regex ...;
匹配到客户端浏览器不执行压缩
可用位置:http, server, location
4、gzip_min_length length;
启用压缩功能的响应报文大小阈值
可用位置:http, server, location
5、gzip_http_version 1.0 | 1.1;
设定启用压缩功能时,协议的最小版本默认:1.1
可用位置:http, server, location
6、gzip_buffers number size;
支持实现压缩功能时缓冲区数量及每个缓存区的大小
默认:32 4k 或16 8k
可用位置:http, server, location
7、gzip_types mime-type ...;
指明仅对哪些类型的资源执行压缩操作;即压缩过滤器
默认包含有text/html,不用显示指定,否则出错
可用位置:http, server, location
8、gzip_vary on | off;
如果启用压缩,是否在响应报文首部插入“Vary: Accept-Encoding”
可用位置:http, server, location
9、gzip_proxied off | expired | no-cache | no-store | private | no_last_modified| no_etag| auth| any ...;
nginx对于代理服务器请求的响应报文,在何种条件下启用压缩功能
off:对被代理的请求不启用压缩
expired,no-cache, no-store,private:对代理服务器请求的响应报文首部Cache-Control值任何一个,启用压缩功能
any:支持所有代理请求的压缩
可用位置:http, server, location
示例模板:
server{
server_name www.a.com;
root /data/web3/;
gzip on;
gzip_comp_level 6;
gzip_min_length 64;
gzip_proxied any;
gzip_types text/xml text/css application/javascript;
}
curl 浏览器默认不压缩
curl www.c.com/log.txt -I --compressed
需要指定压缩
ngx_http_gzip_module
模块 详细说明请参考官网 地址链接