模块 ngx_http_gzip_static_module
Example Configuration Directives 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
可以使用该命令或任何其他兼容命令
来压缩文件。建议原文件和压缩文件的修改日期和时间相同。