[Varnish] #132: Varnish 1.1 dies with assert error in SES_Delete
Varnish
varnish-bugs at projects.linpro.no
Sun Aug 5 21:39:06 CEST 2007
#132: Varnish 1.1 dies with assert error in SES_Delete
----------------------------------+-----------------------------------------
Reporter: anders | Owner: phk
Type: defect | Status: new
Priority: high | Milestone: Varnish 1.1.1
Component: varnishd | Version: 1.1
Severity: major | Resolution:
Keywords: core dump SES_Delete |
----------------------------------+-----------------------------------------
Comment (by anders):
VCL code used is:
backend default {
set backend.host = "192.168.0.3";
set backend.port = "80";
}
acl purge {
"192.168.0.4"/32;
}
sub vcl_recv {
if ((req.http.host ~ "^(cache.finn.no|finn.no|www.finn.no)$") ||
(req.http.host == "banner.finn.no" && req.url ~
"^/(jsp2|finn/gojsp|daily|board|auximg/papirfly|finn/cacheable|crossdomain.xml)"))
{
if (req.request == "GET" || req.request == "HEAD") {
lookup;
} elsif (req.request == "PURGE") {
if (!client.ip ~ purge) {
error 405 "Not allowed.";
}
lookup;
} else {
pipe;
}
} else {
error 403 "Access denied. Contact cacheadmin at finn.no if
you have problems.";
}
}
sub vcl_miss {
if (req.request == "PURGE") {
error 404 "Not in cache.";
} else {
fetch;
}
}
sub vcl_hit {
if (req.request == "PURGE") {
set obj.ttl = 0s;
error 200 "Purged.";
} else {
deliver;
}
}
sub vcl_fetch {
if (obj.ttl < 86400s) {
set obj.ttl = 604800s;
}
if (obj.http.Cookie) {
remove obj.http.Cookie;
}
if (obj.http.Set-Cookie) {
remove obj.http.Set-Cookie;
}
insert;
}
--
Ticket URL: <http://varnish.projects.linpro.no/ticket/132#comment:4>
Varnish <http://varnish.projects.linpro.no/>
The Varnish HTTP Accelerator
More information about the varnish-bugs
mailing list