将Nginx与Tomcat一起使用,我们可以压缩响应,但我想知道如何压缩请求?
在NGnix的早期版本中,它不受支持,是否支持最新版本?
若然,有关如何做同样的文件?
答案 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