From 615665a943cb46f0a0497cd28c61367925149e85 Mon Sep 17 00:00:00 2001 From: lza_menace Date: Fri, 3 Mar 2023 10:57:43 -0800 Subject: [PATCH] add health checking to each node --- xmrnodes/templates/haproxy.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmrnodes/templates/haproxy.html b/xmrnodes/templates/haproxy.html index 43a0107..2e5b65c 100644 --- a/xmrnodes/templates/haproxy.html +++ b/xmrnodes/templates/haproxy.html @@ -13,6 +13,6 @@ backend nodes balance roundrobin option httpchk GET /get_info {% for node in nodes -%} - server backend-{{ node.id }} {{ node.get_netloc() }} + server backend-{{ node.id }} {{ node.get_netloc() }} check inter 10s fall 5 rise 5 {% endfor %}