在我的Firefox或Chrome中,如果我检查HTTP标头,结果总是使用Content-Encoding:gzip。但我有客户报告他们看到“transfer-encoding:chunked”而不是gzip压缩请求。
http://www.example.com/public/css/style.min.css
如果我或客户在线进行gzip压缩检查,则确认gzip已激活。
https://checkgzipcompression.com = gzip!
但是如果我使用像这样的检查器。 http://onlinecurl.com/
我也得到了transfer-encoding:chunked
请求:
GET /style/css.css HTTP/1.1
Host: www.example.com
Connection: keep-alive
Pragma: no-cache
Cache-Control: no-cache
User-Agent: ...
Accept: /
Referer: http://www.example.com/
Accept-Encoding: gzip, deflate
Accept-Language: ...
Cookie: ...
响应:
HTTP/1.1 200 OK
Age: 532948
cache-control: public, max-age=604800
Content-Type: text/css
Date: Wed, 28 Jun 2017 12:35:07 GMT
ETag: "5349e8d595dfd21:0"
Last-Modified: Wed, 07 Jun 2017 13:56:17 GMT
Server: Microsoft-IIS/7.5
Vary: X-UA,Accept-Encoding, User-Agent
X-Cache: HIT
X-Cache-Hits: 6327
X-CacheReason: Static-js-css.
X-Powered-By: ASP.NET
X-Served-By: ip-xxx-xxx-xxx-xx.name.xxx
x-stale: true
X-UA-Device: pc
X-Varnish: 993020034 905795837
X-Varnish-beresp-grace: 43200.000
X-Varnish-beresp-status: 200
X-Varnish-beresp-ttl: 604800.000
transfer-encoding: chunked
Connection: keep-alive
为什么有些请求没有被压缩,应该是什么时候,这是我的Varnish配置(与gzip相关的部分):
if (req.http.Accept-Encoding) {
if (req.url ~ "\.(jpg|png|gif|gz|tgz|bz2|tbz|mp3|ogg|flv|swf)$") {
# No point in compressing these
remove req.http.Accept-Encoding;
} elsif (req.http.Accept-Encoding ~ "gzip") {
set req.http.Accept-Encoding = "gzip";
} elsif (req.http.Accept-Encoding ~ "deflate") {
set req.http.Accept-Encoding = "deflate";
} else {
# unkown algorithm
remove req.http.Accept-Encoding;
}
}
# Enabling GZIP
if (beresp.http.Content-Type ~ "(text/css|application/x-javascript|application/javascript)") {
set beresp.do_gzip = true;
}
if (beresp.http.Content-Encoding ~ "gzip" ) {
if (beresp.http.Content-Length == "0") {
unset beresp.http.Content-Encoding;
}
}
set beresp.http.Vary = regsub(beresp.http.Vary, "(?i)^(.*?)X-Forwarded-URI,?(.*)$", "\1\2");
set beresp.http.Vary = regsub(beresp.http.Vary, "(?i)^(.*?)User-Agent,?(.*)$", "\1\2");
set beresp.http.Vary = regsub(beresp.http.Vary, "^(.*?),?$", "X-UA,\1");
set beresp.http.Vary = regsub(beresp.http.Vary, "^(.*?),?$", "\1");
任何想法,谢谢。
答案 0 :(得分:2)
如果请求表明它可以接受gzip压缩响应,则只会对响应进行gzip压缩。这由请求中的Accept-Encoding
标头指示。因此,您的在线curl
可能不会发送该标头。对于看到此问题的客户,情况可能相同。你真的有客户报告说他们没有得到回复吗?
<强>更新强>
啊,我明白你现在在做什么。您使用的是最新版的Varnish吗?现在没有必要自己做这一切。 Varnish本地处理它。您需要做的就是将do_gzip
设置为on
以获取您想要的内容类型,而Varnish会处理其余内容,包括Accept-Encoding
标题。请参阅the documentation here。
所以只需删除所有与gzip /编码相关的代码,但# Enabling GZIP
下的部分除外:
# Enabling GZIP
if (beresp.http.Content-Type ~ "(text/css|application/x-javascript|application/javascript)") {
set beresp.do_gzip = true;
}
这可能会让一切正常。这样对我来说很好。最好的VCL数量尽可能少,Varnish非常擅长处理事物本身。在进行更改后,不要忘记重新启动Varnish或以其他方式清除此站点的缓存。
如果它有用,我会使用以下VCL:
if (
beresp.status == 200
&& beresp.http.content-type ~ "\b((text/(html|plain|css|javascript|xml|xsl))|(application/(javascript|xml|xhtml\+xml)))\b"
) {
set beresp.do_gzip = true;
}
其中检查可以从压缩中受益的更多内容类型,包括HTML。我不会为application/x-javascript
而烦恼,因为它很古老而且没有使用过。
另外请注意,您确定需要以您在那里的方式修改Vary
标题吗?