使用 nginx 进行 Gzip 压缩

使用 nginx 进行 Gzip 压缩

在我的 nginx.conf 中我有:

gzip              on;
gzip_static       on;
gzip_buffers      16 8k;
gzip_comp_level   9;
gzip_http_version 1.0;
gzip_min_length   1000;
gzip_types        text/plain text/css image/x-icon image/bmp image/png image/gif image/jpeg image/jpg application/json application/x-javascript text/javascript;
gzip_vary         on;
gzip_proxied any;

因此,如果我在服务器上获取图片的标题:

spiroo@glamdring:~$ curl -I http://static.mysite.com/g/pics/big_6e1855d844ebca560379139e75942f669655f.jpeg
HTTP/1.1 200 OK
Server: nginx
Date: Thu, 04 Apr 2013 13:00:20 GMT
Content-Type: image/jpeg
Content-Length: 5336
Last-Modified: Mon, 25 Mar 2013 13:28:02 GMT
Expires: Fri, 04 Apr 2014 13:00:20 GMT
Cache-Control: max-age=31536000
Pragma: public
Cache-Control: public, must-revalidate, proxy-revalidate
Accept-Ranges: bytes

但是如果我在 nginx.conf 中关闭 gzip 压缩,我会在 Content-Length 上得到完全相同的结果。

我究竟做错了什么?

提前致谢。

PS:需要说明的是,我拥有最新版本的 nginx,并且使用代理(haproxy)。

编辑==>

我在 CSS 方面也遇到了同样的问题。我知道 jpeg 已经压缩了。当然,当我打开/关闭 gzip 时,我会重新启动 nginx。

这是我从 css 文件头中提取的。无论是否使用 gzip 压缩,我的 Content-Lenght 都是相同的。

spiroo@glamdring:~$ curl -I http://static.mysite.com/css/9a7f503b.css
HTTP/1.1 200 OK
Server: nginx
Date: Thu, 04 Apr 2013 14:21:50 GMT
Content-Type: text/css
Content-Length: 203088
Last-Modified: Tue, 02 Apr 2013 11:34:39 GMT
Vary: Accept-Encoding
Expires: Fri, 04 Apr 2014 14:21:50 GMT
Cache-Control: max-age=31536000
Pragma: public
Cache-Control: public, must-revalidate, proxy-revalidate
Accept-Ranges: bytes

这是我的静态文件的 nginx 配置:

server {
server_name     static.mysite.com;
root /home/www/mysite/current/web;

location / {
    return 404;
}

location ~ \.(?:jpg|jpeg|js|css|gif|png|swf|ico|pdf)$ {
    expires        365d;
    access_log     off;
    add_header Pragma public;
    add_header Cache-Control "public, must-revalidate, proxy-revalidate";
}

}

答案1

curl默认情况下不会Accept-Encoding: gzip。您需要​​使用-H "Accept-Encoding: gzip,deflate"get curl 来请求 gzip,或者更好的是,使用,--compressed这样 curl 就会知道如何解压缩结果。

答案2

图片(jpg/gif 等)已压缩。因此您不需要(也不应该尝试)在 Web 服务器上压缩它们。

下面是我压缩的一个例子:

gzip_types        text/html text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript image/x-icon image/bmp;

相关内容