nginx开启gzip


在nginx配置http 节下:


    gzip  on; 
    gzip_proxied any;
    gzip_types text/plain text/css text/javascript text/xml application/xml application/xhtml+xml application/xml+rss application/json;

gzip on; 表示开启gzip

gzip_proxyied; 表示为proxy请求开启gzip. 比如upstream类型

gzip_types 表示对某些content type 进行gzip. 后端系统注意设置对应的content type



测试gzip是否成功开启, 可以使用curl命令. 

  如果是GET请求, 使用curl -I 可以直接看header的Content-Encoding 是否为gzip. 

  如果是POST请求, 则需使用curl -s -D-  -H 'Accept-Encoding: gzip,deflate'  -d param -o /dev/null URL





你可能感兴趣的:(nginx开启gzip)