Commit 19acd520 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Use "localhost" in our acls, so it works no matter which address it

picks off your loopback interface.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3017 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 8e307799
......@@ -13,7 +13,7 @@ server s1 {
varnish v1 -vcl+backend {
acl acl1 {
"127.0.0.1";
"localhost";
}
sub vcl_recv {
......@@ -33,7 +33,7 @@ client c1 -run
varnish v1 -vcl+backend {
acl acl1 {
! "127.0.0.1";
! "localhost";
}
sub vcl_recv {
......
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