使用nginx压缩请求

时间:2016-08-29 18:53:28

标签: nginx gzip compression http-compression

将Nginx与Tomcat一起使用,我们可以压缩响应,但我想知道如何压缩请求?

在NGnix的早期版本中,它不受支持,是否支持最新版本?

若然,有关如何做同样的文件?

1 个答案:

答案 0 :(得分:0)

你的nginx conf中的gzip必须激活cf http://nginx.org/en/docs/http/ngx_http_gzip_module.html

要允许请求正文压缩,必须使用http 1.1: http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_http_version

Arfy