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: <https://www.varnish-cache.org/lists/pipermail/varnish-misc/attachments/20100202/efe1eaa1/attachment-0001.html>


More information about the varnish-misc mailing list