From: phk Date: Fri, 7 Jul 2006 07:22:55 +0000 (+0000) Subject: Pipe anything different from HEAD & GET X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=159b8d57e4f8d145e35a90e99fffa37869cc0ebe;p=varnish Pipe anything different from HEAD & GET git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@371 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/varnishd.c b/varnish-cache/bin/varnishd/varnishd.c index dab4eff9..72438827 100644 --- a/varnish-cache/bin/varnishd/varnishd.c +++ b/varnish-cache/bin/varnishd/varnishd.c @@ -82,7 +82,7 @@ vcl_default(const char *bflag) "}\n" "sub vcl_recv {\n" " if (req.request != \"GET\" && req.request != \"HEAD\") {\n" - " pass;\n" + " pipe;\n" " }\n" " if (req.http.Authenticate || req.http.Cookie) {\n" " pass;\n"