Commit 4d006b80 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Also fix this test for Jails

parent d6438356
......@@ -11,13 +11,29 @@ server s1 {
txresp -body "s1 >>> Hello world!"
} -start
varnish v1 -proto "PROXY" -vcl+backend {
varnish v1 -proto "PROXY" -vcl+backend {} -start
haproxy h1 -D -conf {
defaults
mode tcp
timeout connect 5s
timeout server 30s
timeout client 30s
listen ssloff
bind "fd@${fe1}"
server v1 ${v1_addr}:${v1_port} send-proxy-v2
} -start
varnish v1 -vcl+backend {
import std;
acl localhost {
"localhost";
"127.0.0.1";
"::1";
"${s1_addr}"; # Jail IPv4 address
"${h1_fe1_addr}"; # Jail IPv6 address
}
sub vcl_deliver {
......@@ -29,19 +45,7 @@ varnish v1 -proto "PROXY" -vcl+backend {
set resp.http.notstdip =
std.ip("" + client.ip, resolve = false) !~ localhost;
}
} -start
haproxy h1 -D -conf {
defaults
mode tcp
timeout connect 5s
timeout server 30s
timeout client 30s
listen ssloff
bind "fd@${fe1}"
server v1 ${v1_addr}:${v1_port} send-proxy-v2
} -start
}
client c1 -connect ${h1_fe1_sock} {
txreq -url "/"
......
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