Commit cc37f38e authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Pass if we spot an Authenticate or Cookie header


git-svn-id: http://www.varnish-cache.org/svn/trunk@201 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent d33fbc0d
......@@ -83,6 +83,9 @@ vcl_default(const char *bflag)
" if (req.request != \"GET\" && req.request != \"HEAD\") {\n"
" pass;\n"
" }\n"
" if (req.http.Authenticate || req.http.Cookie) {\n"
" pass;\n"
" }\n"
" lookup;\n"
"}\n"
"\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment