From cf1e43c5287cf7c26e4fe9e51fac8a58c7d86cab Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Mon, 2 Aug 2021 08:19:18 -0400 Subject: [PATCH] simple test haproxy configuration file --- scripts/ci/haproxy.conf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 scripts/ci/haproxy.conf diff --git a/scripts/ci/haproxy.conf b/scripts/ci/haproxy.conf new file mode 100644 index 0000000000..e451aed775 --- /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 + -- 2.47.3