From 474739b1ef7ea4d7fc1209ddc23737b0aa02de37 Mon Sep 17 00:00:00 2001 From: Erik Mackdanz Date: Thu, 26 Oct 2023 18:35:44 -0500 Subject: [PATCH] add sample haproxy.cfg --- haproxy.cfg | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 haproxy.cfg diff --git a/haproxy.cfg b/haproxy.cfg new file mode 100644 index 0000000..9497ee7 --- /dev/null +++ b/haproxy.cfg @@ -0,0 +1,21 @@ +# haproxy -f haproxy.cfg + +# $BROWSER http://localhost:8090/touchgrass.jpg + +defaults + mode http + timeout connect 5000ms + timeout client 50000ms + timeout server 50000ms + +frontend http-private-in + bind 127.0.0.1:8090 + use_backend fcgitest-front + +backend fcgitest-front + use-fcgi-app testy + server server1 /tmp/fcgisocket proto fcgi + +fcgi-app testy + docroot /tmp + -- 2.52.0