Fwd: Varnish caching 503 error pages

Bayron Guevara bayron.guevara at gmail.com
Tue Feb 2 23:25:14 CET 2010


You can use the obj.cacheable property, which is a suggestion from Varnish
about the response should be cacheable. By default Error response codes
aren't cached, so test the following:

sub vcl_fetch {
if (!obj.cacheable){
return (pass);
}
}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://projects.linpro.no/pipermail/varnish-misc/attachments/20100202/efe1eaa1/attachment.htm 


More information about the varnish-misc mailing list