Wordpress Varnish年龄= 0或不缓存(Cookies?)

时间:2014-03-25 08:51:02

标签: wordpress caching cookies varnish varnish-vcl

我使用Wordpress 3.8.1和Varnish 3.0.5。由于VCL的噩梦,我确定Varnish没有缓存。我也不知道Wordpress的标准/正确VCL在哪里。

我的Wordpress是多站点,我将Varnish放在Wordpress VM本身的顶部。 Varnish @ 8080Apache @ 80/443

由于我对VCL一无所知,我只是使用了一个随机的VCL:

backend default {
    .host = "127.0.0.1";
    .port = "8080";
    .connect_timeout = 60s;
    .first_byte_timeout = 60s;
    .between_bytes_timeout = 60s;
}

sub vcl_recv {
    if (req.restarts == 0) {
        if (req.http.x-forwarded-for) {
            set req.http.X-Forwarded-For =
            req.http.X-Forwarded-For + ", " + client.ip;
        } else {
            set req.http.X-Forwarded-For = client.ip;
        }
    }
    if (req.request == "PURGE") {
        if ( client.ip != "xx.xx.xx.xx") {
            error 405 "Not allowed.";
        }
        return (lookup);
    }
    if (req.request != "GET" &&
        req.request != "HEAD" &&
        req.request != "PUT" && 
        req.request != "POST" &&
        req.request != "TRACE" &&
        req.request != "OPTIONS" &&
        req.request != "DELETE") {
            return (pipe);
    }
    if (req.request != "GET" && req.request != "HEAD") {
        return (pass);
    }
    if (!(req.url ~ "wp-(login|admin)") &&
        !(req.url ~ "&preview=true" ) ) {
        unset req.http.cookie;
    }

    if (req.http.Authorization || req.http.Cookie) {
        return (pass);
    }
    return (lookup);
}

sub vcl_hit {
    if (req.request == "PURGE") {
        purge;
        error 200 "Purged.";
    }
    return (deliver);
}

sub vcl_miss {
    if (req.request == "PURGE") {
        purge;
        error 200 "Purged.";
    }
    return (fetch);
}

sub vcl_fetch {
    if (!(req.url ~ "wp-(login|admin)")) {
        unset beresp.http.set-cookie;
        set beresp.ttl = 96h;
    }

    if (beresp.ttl <= 0s ||
        beresp.http.Set-Cookie ||
        beresp.http.Vary == "*") {
            set beresp.ttl = 120 s;
            return (hit_for_pass);
    }
    return (deliver);
}

(我使用了我的ip用于&#39; xx.xx.xx.xx&#39;)

但无论如何,这并不总是得到age : 0。我知道VCL必须处理Wordpress COOKIES和其他COOKIES,如G.A等。

怎么做,或者我在哪里可以找到适用于Wordpress的标准/正确的VCL?

2 个答案:

答案 0 :(得分:1)

看看下面的清漆模板,wordpress一个很不错。认为这是解决问题成功的最快方法。根据您现有的vcl手动修复它需要更多时间。

https://github.com/mattiasgeniar/varnish-3.0-configuration-templates

答案 1 :(得分:0)

如果请求包含任何Cookie标头,则Varnish不会缓存该请求。 如果您发现对图片或css等资源的请求未被缓存,则可以删除该请求的Cookie标头,因为它们通常不需要,check here形式示例。

您可以使用varnishlog命令实时查看varnish中的日志。如果您在实际站点上执行此操作,则可以过滤日志,例如使用:

varnishlog -m RxURL:/my/page.php

您可以查看documentation了解其他参数。

我不建议只使用您找到的随机vcl,您可以将其作为起点,然后我鼓励您阅读Varnish文档以了解每个规则的作用,许多规则都不是&#39;实际上需要它,因为它们是默认的Varnish行为。安装varnish时,您可以看到default.vcl文件。

我希望有所帮助。