我们通过Loadbalanced Amazon AWS环境为多个Typo3网站使用Varnish 3.0.2前端缓存。一切正常,但是使用Method POST提交信息的联系表单不能按预期工作。 我填写表单并按提交,浏览器开始进度,但返回到表单并保留我的推送信息。如果我在后端PHP Web服务器上做同样的事情,一切都适用于Post。所以我认为我的default.vcl存在一些问题。我希望这里有一些Varnish专家,他们可以帮助一个Varnish新手。
backend default{
.host = "10.0.0.10";
.port = "80";
}
acl ClearCache {
"localhost";
"10.0.0.10";
"10.0.0.96";
}
#acl purge {
# "localhost";
# "10.0.0.96";
#}
sub vcl_recv {
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;
}
set req.backend = default;
if (req.request == "POST") {
ban("req.url == " + req.url);
set req.http.X-Test = req.url;
return (pass);
}
if (req.request == "BAN") {
if (!client.ip ~ ClearCache) {
error 405 "Not allowed.";
}
# This option is to clear any cached object containing the req.url
ban("req.url ~ "+req.url);
# This option is to clear any cached object matches the exact req.url
# ban("req.url == "+req.url);
# This option is to clear any cached object containing the req.url
# AND matching the hostname.
# ban("req.url ~ "+req.url+" && req.http.host == "+req.http.host);
error 200 "Cached Cleared Successfully.";
}
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.http.Authorization || req.http.Cookie) {
return (pass);
}
if(req.http.host ~ "typo3.lygie.de"){
##TYPO3-Backend nicht cachen
if (req.http.cookie ~ "be_typo_user"){
##Inhalten löschen wenn Shift+reload gedrückt wird, aber nur bei eingeloggtem user (Backend-Cookie)
if (req.http.Cache-Control ~ "no-cache") {
set req.ttl = 0s;
ban("req.url == " + req.url);
return (pass);
}
}
else{
##Cookies von TYPO3-Seiten löschen
unset req.http.Cookie;
}
}
return (lookup);
}
sub vcl_fetch {
set beresp.ttl = 12h;
set req.grace = 24h;
if (req.url ~ "\.(jpeg|jpg|png|gif|ico|swf|js|css|txt|gz|zip|rar|bz2|tgz|tbz|html|htm|pdf|pls|torrent)$") {
set beresp.ttl = 48h;
}
if (req.url ~ "/typo3") {
}else {
unset beresp.http.set-cookie;
}
return (deliver);
}
答案 0 :(得分:0)
之前我遇到过return(pipe)
的问题。我的解决方案很简单。只需在return(hit_for_pass)
中vcl_recv
,然后在相同条件下return(deliver)
vcl_fetch
{{1}}。这不是一个漂亮的解决方案,但它确实可以正常工作。
答案 1 :(得分:0)
通常,您不需要通过php(在提交表单之后)进一步跟踪用户。 如果您不需要根据内部数据做出反应,请尝试清除PHPSESSID cookie。
if (req.http.Cookie ~ "PHPSESSID"){
remove req.http.Cookie;
}
我是清漆的新手所以我仍然在考虑任何负面的副作用
(可能看似offtopic但我有完全相同的情况并以这种方式解决了。)
答案 2 :(得分:0)
这篇文章虽旧但金色。此版本仍在使用。 我有相同版本的清漆,当我做POST时我有503。 如果你有这个问题(昨天和今天): 注意:在vcl_recv内部如果PUT / POST / DELETE执行返回(传递),如果需要使缓存无效,请执行ban() 首先尝试确定是否使用
超时生成503backend default{
.host = "10.0.0.10";
.port = "80";
.connect_timeout = 300s;
.first_byte_timeout = 300s;
.between_bytes_timeout = 300s;
}
第二次尝试remplace
return (pipe);
与
return (pass);
因为效果不好。 记住:varnishlog是你最好的朋友。