启用压缩
no_etag – 启用压缩 , 如果 header 中包含 "ETag" 头信息 , 启用压缩
auth – 启用压缩 , 如果 header 中包含 "Authorization" 头信息 , 启用压缩
any – 无条件压缩所有结果数据
Syntax: gzip_proxied off | expired | no-cache | no-store | private | no_last_modified
| no_etag | auth | any ...;
Default: gzip_proxied off;
Context: http, server, location
gzip_types
设置需要压缩的 MIME 类型,如果不在设置类型范围内的请求不进行压缩 。根据这个值进行匹配 。"text/html"类型总是会被压缩 。
Syntax: gzip_types mime-type ...;
Default: gzip_types text/html;
Context: http, server, location
gzip_vary
在响应头添加
AcceptEncoding:gzip , 对于本身不支持agip压缩的客户端浏览器有用 。
Syntax: gzip_vary on | off;
Default: gzip_vary off;
Context: http, server, location
本篇文章就分析到这里 , 欢迎点赞 , 收藏 , 分享 。
【聊聊字符集编码与数据压缩】
推荐阅读
- 深入聊聊Linux 五种IO模型
- 第08期:有关 MySQL 字符集的注意事项
- 聊聊小程序运行机制的那些事
- 2种防御性编码技术
- 理解Python的编码问题
- 聊聊Spring boot2.X开发环境搭建和基本开发
- 淘宝卖家商品编码应该如何写呢 库存商品编码是多少
- 聊聊Java中的异常及处理
- 聊聊服务灾备
- 多线程场景下编码的一些思考