]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
simple test haproxy configuration file
authorAlan T. DeKok <aland@freeradius.org>
Mon, 2 Aug 2021 12:19:18 +0000 (08:19 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 2 Aug 2021 12:19:18 +0000 (08:19 -0400)
scripts/ci/haproxy.conf [new file with mode: 0644]

diff --git a/scripts/ci/haproxy.conf b/scripts/ci/haproxy.conf
new file mode 100644 (file)
index 0000000..e451aed
--- /dev/null
@@ -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
+