Nginx gzip无法在Chrome中运行

时间:2016-12-03 06:36:45

标签: google-chrome nginx gzip http-compression

正如标题所说,Nginx Gzip无法正常工作,我尝试过很多在互联网上散播的配置都没有用,当简单的事情不起作用时,我真的很沮丧。

gzip.conf:

gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_min_length 256;
gzip_types
    text/plain
    text/css
    application/json
    application/javascript
    application/x-javascript
    text/xml
    application/xml
    application/xml+rss
    text/javascript
    application/vnd.ms-fontobject
    application/x-font-ttf
    font/opentype
    image/svg+xml
    image/x-icon;

Chrome:

enter image description here

enter image description here

Chrome Audit: enter image description here

Curl: enter image description here

我已经清除了缓存,一切都还是一样。

=======================

更新

我已经在

测试了gzip压缩

http://checkgzipcompression.com/

然后给了我:

enter image description here

但在Chrome中显示:

enter image description here

1 个答案:

答案 0 :(得分:4)

罪魁祸首是我的反病毒,我认为这不是因为起初我已经禁用了它,而且反应仍然不是gzipped。但是当我在我的工作区中尝试使用相同chrome版本的新安装的VM时,响应得到gzipped,当我在该VM上安装了防病毒时,响应不再是gzipped