Commit 75068788 authored by Tollef Fog Heen's avatar Tollef Fog Heen

Documentation for vcl_pipe and connection: close

Note in the default VCL that connection: close might be wanted.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3852 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 4ffe3f1e
......@@ -62,6 +62,12 @@ sub vcl_recv {
}
sub vcl_pipe {
# Note that only the first request to the backend will have
# X-Forwarded-For set. If you use X-Forwarded-For and want to
# have it set for all requests, make sure to have:
# set req.http.connection = "close";
# here. It is not set by default as it might break some broken web
# applications, like IIS with NTLM authentication.
return (pipe);
}
......
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