Commit 1bcc3d37 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Change from a non-resolving to an illegal DNS name, to avoid

spurious test-failures if peoples DNS servers lie to them.

Fixes #356



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@4559 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 15bdd02e
......@@ -34,7 +34,7 @@ varnish v1 -badvcl {
varnish v1 -badvcl {
backend b { .host = "127.0.0.1"; }
acl a { "en.lille.nisse.rejste."; }
acl a { "...com"; }
sub vcl_recv { if (client.ip ~ a) { pass; } }
}
......@@ -60,8 +60,8 @@ varnish v1 -vcl {
backend b { .host = "127.0.0.1"; }
acl a {
! "10.1.3";
("en.lille.nisse.rejste." / 22);
(!"en.lille.nisse.rejste.");
("...com" / 22);
(!"...com");
}
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