模块 ngx_http_gzip_static_module

示例配置
指令
     gzip_static

ngx_http_gzip_static_module 模块允许发送具有“.gz”文件名扩展名的预压缩文件,而不是常规文件。

此模块默认情况下未构建,应使用 --with-http_gzip_static_module 配置参数启用它。

示例配置

gzip_static  on;
gzip_proxied expired no-cache no-store private auth;

指令

语法 gzip_static on | off | always;
默认值
gzip_static off;
上下文 httpserverlocation

启用(“on”)或禁用(“off”)检查预压缩文件的存在。还考虑以下指令:gzip_http_versiongzip_proxiedgzip_disablegzip_vary

使用“always”值(1.3.6),在所有情况下都使用 gzip 文件,而不检查客户端是否支持它。如果磁盘上没有任何未压缩的文件或使用了 ngx_http_gunzip_module,则此功能很有用。

可以使用 gzip 命令或任何其他兼容的命令压缩文件。建议原始文件和压缩文件的修改日期和时间相同。