首页 > 解决方案 > Nginx 可以解压 gzip 文件作为响应吗?

问题描述

问题:

Nginx 可以解压 gzip 文件作为响应吗?

究竟是什么?

  1. 请求curl 127.0.0.1/file.json.gz应返回解压缩的 json 作为响应。

更多细节:

  1. 文件存在/path/file.json.gz
  2. Nginx 配置:
server {
 location / {
        gunzip on;
        root   /path;
    }
}

  1. Nginx 构建包含 gunzip 模块http://nginx.org/en/docs/http/ngx_http_gunzip_module.html
nginx -V 2>&1 | grep "\-\-with\-http_gunzip_module" => ... --with-http_gunzip_module ...
  1. 响应是 gzip 编码的:
curl -v 127.0.0.1/file.json.gz
*   Trying 127.0.0.1...
* Connected to 127.0.0.1 (127.0.0.1) port 80 (#0)
> GET /index.html.gz HTTP/1.1
> Host: 127.0.0.1
> User-Agent: curl/7.47.0
> Accept: */*
> 
< HTTP/1.1 200 OK
< Server: nginx/1.13.1
< Date: Wed, 11 Mar 2020 20:41:59 GMT
< Content-Type: application/octet-stream
< Content-Length: 392
< Last-Modified: Tue, 31 Jan 2017 15:01:11 GMT
< Connection: keep-alive
< ETag: "5890a6b7-188"
< Content-Encoding: gzip
< Accept-Ranges: bytes
< 
���X�N�0
   ��+

标签: nginxgunzip

解决方案


推荐阅读