多层nginx中的压缩问题 api接口>1M数据的返回浏览器 网关
基础 前端异步请求,局部刷新,加大最大等待时间 nginx开启压缩 进阶 多级nginx的压缩 实践测试: 每级都要开启压缩 gizp on; 最外层开启,但最内层没有开启 最外层没有开启 最外层、最内层均开启 实测是2层 api--> nginx version: nginx/1.12.2 --> nginx version: nginx/1.10.3 -->djangoServer 最外层(第1层) # http://nginx.org/en/docs/http/ngx_http_gzip_module.html gzip on; gzip_min_length 1000; gzip_proxied expired no-cache no-store private auth; #gzip_types text/plain application/xml; gzip_types *; location /api/ { gzip on; #add_header Transfer-Encoding 'identity'; proxy_set_header X-Real-IP $remote_addr; proxy_pass http://p2:8080/api/; } } 最内层(第2层) # http://nginx.org/en/docs/http/ngx_http_gzip