Commit 0052757f authored by Tollef Fog Heen's avatar Tollef Fog Heen

Fix Set-Cookie vs Cookie confusion and old keywords.

Fixes #600

git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@4385 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent bc7b2d50
......@@ -369,8 +369,8 @@ Proceed with pass mode.
.\" vcl_hash
.It Cm vcl_hash
Use
.Cm req.hash += req.http.Set-Cookie
or similar to include the Set-Cookie HTTP header in the hash string.
.Cm req.hash += req.http.Cookie
or similar to include the Cookie HTTP header in the hash string.
The
.Cm vcl_hash
subroutine may terminate with one of the following keywords:
......@@ -669,7 +669,7 @@ sub vcl_recv {
sub vcl_fetch {
if (obj.http.Set-Cookie) {
insert;
deliver;
}
}
.Ed
......
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