💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## [ngx_http_gzip_module][1] 在文件传输过程中是否开启压缩, >[success]gzip 默认值: off 是否开启压缩 >[success]gzip_buffers 默认值: 4 4k/8k 用于指定存放压缩响应的缓冲的数量和大小。如果没有设定,则等于一个页面的大小。 >[success]gzip_comp_level 默认值: 1 用于设定压缩级别,1是最小压缩率,9是最大压缩率。 >[success]gzip_min_length 默认值:20 设置响应体的最小长度 >[success]gzip_types mime-type 默认值:text/html; 指定需要压缩的mime类型 >[success]gzip_vary on | off; 默认值:off 是否向响应头中添加vary:`Accept-Encoding HTTP` ## [ngx_http_gzip_static_module][2] >[success]gzip_static on | off | always; 默认值:off; 开启这个功能,会查找与请求文件同名并且以gz结尾的文件,这个文件被称为预压缩格式,我们先进行了压缩,以后就不会重复进行压缩了。 ~~~ gzip -c index.html > index.html.gz ~~~ [1]:http://nginx.org/en/docs/http/ngx_http_gzip_module.html [2]:http://nginx.org/en/docs/http/ngx_http_gzip_static_module.html