Commit 3d482deb authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Update the default configuration.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1387 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 7c0fc9fa
...@@ -400,17 +400,17 @@ sub vcl_fetch { ...@@ -400,17 +400,17 @@ sub vcl_fetch {
error; error;
} }
if (!obj.cacheable) { if (!obj.cacheable) {
insert_pass; pass;
} }
if (resp.http.Set-Cookie) { if (resp.http.Set-Cookie) {
insert_pass; pass;
} }
insert; insert;
} }
sub vcl_timeout { sub vcl_timeout {
discard; discard;
}; }
.Ed .Ed
.Pp .Pp
The following example shows how to support multiple sites running on The following example shows how to support multiple sites running on
......
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