From: Alan T. DeKok Date: Mon, 2 Aug 2021 12:19:18 +0000 (-0400) Subject: simple test haproxy configuration file X-Git-Tag: release_3_0_24~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf1e43c5287cf7c26e4fe9e51fac8a58c7d86cab;p=thirdparty%2Ffreeradius-server.git simple test haproxy configuration file --- diff --git a/scripts/ci/haproxy.conf b/scripts/ci/haproxy.conf new file mode 100644 index 00000000000..e451aed7757 --- /dev/null +++ b/scripts/ci/haproxy.conf @@ -0,0 +1,16 @@ +global + maxconn 100 + +defaults + timeout connect 10s + timeout client 30s + timeout server 30s + +frontend example.org + bind 127.0.0.1:2084 + default_backend radsec + +backend radsec + balance roundrobin + server localhost-radssec 127.0.0.1:2083 send-proxy +