commit fcd94c8eae3d4972e0eeb60e6ae91a73f34df280 Author: js Date: Fri Dec 12 13:11:14 2025 +0000 Загрузить файлы в «/» diff --git a/haproxy.cfg b/haproxy.cfg new file mode 100644 index 0000000..b095779 --- /dev/null +++ b/haproxy.cfg @@ -0,0 +1,23 @@ +global + log /dev/log local0 + maxconn 2000 + daemon + +defaults + log global + mode tcp + option tcplog + timeout connect 5s + timeout client 30s + timeout server 30s + +frontend incus_api + bind *:8443 + default_backend incus_back + +backend incus_back + balance leastconn + option tcp-check + server s1 10.220.187.121:8443 check + server s2 10.220.187.189:8443 check + server s3 10.220.187.10:8443 check \ No newline at end of file