0

我已经在 Varnish 缓存服务器后面设置了一个带有 Nginx 的 Magento 安装,并且我正在使用这个扩展

但是,我从来没有遇到过缓存:

HTTP/1.1 200 OK
Server: nginx/1.1.19
Content-Type: text/html; charset=UTF-8
Vary: Accept-Encoding
X-Powered-By: PHP/5.3.10-1ubuntu3.6
Set-Cookie: frontend=8hoas96a6grd1hfb8vqqa5t9a5; expires=Wed, 12-Jun-2013 16:51:51 GMT; path=/; domain=54.232.214.253; H
ttpOnly
Set-Cookie: currency=BRL; expires=Wed, 12-Jun-2013 16:51:51 GMT; path=/; domain=54.232.214.253; httponly
Set-Cookie: PAGECACHE_ENV=xo32rWZFNbsRL%2F05449a0JLaKEguYZObIG0ZFWOVEV3Ajma1%2FUaj%2FA8nPjnTGpBu%2BMw9h72MUATmZTpHe7Ec4A
9pN%2BJcu%2F%2BggyaAX%2FZEZC4%3D; expires=Wed, 12-Jun-2013 16:51:52 GMT; path=/; domain=54.232.214.253; httponly
X-Cache-Debug: 1
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0, s-maxage=0
Expires: Mon, 31 Mar 2008 10:00:00 GMT
Pragma: no-cache
X-Purge-URL: /
X-Purge-Host: 54.232.214.253
Date: Wed, 12 Jun 2013 15:51:52 GMT
X-Varnish: 369200976
Age: 0
Via: 1.1 varnish
Connection: keep-alive
X-Cache: MISS
X-Cache-Expires: Mon, 31 Mar 2008 10:00:00 GMT

我知道原因是因为设置了 cookie,所以 Varnish 将请求传递给 Nginx,但我找不到它没有从请求中删除它们的原因(这应该根据我的 default.vcl 来完成) m 使用模块提供的那个)

4

2 回答 2

0

您只需取消设置 cookie 即可完成 .vcl 文件

sub vcl_recv {
    unset req.http.cookie;
}

sub vcl_fetch {
    unset beresp.http.set-cookie;
}

sub vcl_deliver {
 unset resp.http.set-cookie;
}

或者

如果您需要使用扩展,请遵循此处发布的完整解决方案

于 2014-06-04T12:11:30.547 回答
0

Magento 正在返回一个响应,表明它不应该被缓存。所以清漆没有缓存它:

Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0, s-maxage=0

您需要返回公共缓存标头(如果您愿意,可以使用正的 max-age 指令)

Cache-Control: public, max-age=600

和/或带有未来日期的 Expires 标头。

此外,如果您使用的是 default.vcl,则响应中存在 Set-Cookie 标头也会导致项目不被缓存:

# sub vcl_fetch {
#     if (beresp.ttl <= 0s ||
#         beresp.http.Set-Cookie ||  /* Look at this line */
#         beresp.http.Vary == "*") {
#       /*
#        * Mark as "Hit-For-Pass" for the next 2 minutes
#        */
#       set beresp.ttl = 120 s;
#       return (hit_for_pass);
于 2013-07-18T01:20:41.763 回答