Note in the default VCL that connection: close might be wanted.
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3852
d4fa192b-c00b-0410-8231-
f00ffab90ce4
}
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);
}