Commit 77abb574 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Try to hit a couple of lines more in vcc_acl.c



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3253 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 91367fac
......@@ -61,6 +61,7 @@ varnish v1 -vcl {
acl a {
! "10.1.3";
("en.lille.nisse.rejste");
(!"en.lille.nisse.rejste");
}
sub vcl_recv { if (client.ip ~ a) { pass; } }
}
......@@ -85,6 +86,8 @@ varnish v1 -vcl {
"10.1.2"/25;
"10.1.2"/26;
"10.1.4"/25;
"10.2.66"/23;
! "10.2.64"/23;
}
sub vcl_recv { if (client.ip ~ a) { pass; } }
}
......
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