模块 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 |
---|---|
默认值 |
gzip_static off; |
上下文 |
http 、server 、location |
启用(“on
”)或禁用(“off
”)检查预压缩文件是否存在。以下指令也会被考虑在内:gzip_http_version、gzip_proxied、gzip_disable 和 gzip_vary。
使用“always
”值(1.3.6),无论客户端是否支持,都会在所有情况下使用 gzip 文件,而无需检查。如果磁盘上根本没有未压缩的文件或使用了ngx_http_gunzip_module,这将非常有用。
可以使用gzip
命令或任何其他兼容的命令压缩文件。建议原始文件和压缩文件的修改日期和时间相同。