Gzip Precompression模块(Gzip Precompression)


·摘要

这个模块在一个预压缩文件传送到开启Gzip压缩的客户端之前检查是否已经存在以“.gz”结尾的压缩文件,这样可以防止文件被重复压缩。
这个模块在0.6.24后可用,如果要使用它则需要在编译时指定如下参数:
./configure --with-http_gzip_static_module
示例配置:
gzip_static on;
 
gzip_http_version   1.1;
gzip_proxied        expired no-cache no-store private auth;
gzip_disable        "MSIE [1-6]\.";
gzip_vary           on;

·指令

gzip_static

语法:gzip_static on|off
默认值:gzip_static off
使用字段:http, server, location
启用模块,你需要确保压缩文件与未压缩文件的时间戳一致。

gzip_http_version

参考Gzip 压缩模块

gzip_proxied

参考Gzip 压缩模块

gzip_disable

参考Gzip 压缩模块

gzip_vary

参考Gzip 压缩模块

·参考文档

Gzip 压缩模块

前进->Random Index模块(Random Index)