summaryrefslogtreecommitdiff
path: root/data/templates
diff options
context:
space:
mode:
authorNicolas Vollmar <nvo@scaling.ch>2024-04-17 11:14:11 +0200
committerNicolas Vollmar <nvo@scaling.ch>2024-04-17 16:46:48 +0200
commit785616393557c4e3f616287de81b61a68ba177ac (patch)
tree657338fbc12549a3c6741ea2f61e549fd0784af8 /data/templates
parent24c997dee169f445548a61a62d1ae38311c3bd84 (diff)
downloadvyos-1x-785616393557c4e3f616287de81b61a68ba177ac.tar.gz
vyos-1x-785616393557c4e3f616287de81b61a68ba177ac.zip
T6246: adds basic haproxy http-check configuration
Diffstat (limited to 'data/templates')
-rw-r--r--data/templates/load-balancing/haproxy.cfg.j29
1 files changed, 9 insertions, 0 deletions
diff --git a/data/templates/load-balancing/haproxy.cfg.j2 b/data/templates/load-balancing/haproxy.cfg.j2
index feb10d247..83008e50a 100644
--- a/data/templates/load-balancing/haproxy.cfg.j2
+++ b/data/templates/load-balancing/haproxy.cfg.j2
@@ -110,6 +110,15 @@ frontend {{ front }}
{% if backend is vyos_defined %}
{% for back, back_config in backend.items() %}
backend {{ back }}
+{% if back_config.http_check is vyos_defined %}
+ option httpchk
+{% endif %}
+{% if back_config.http_check.uri is vyos_defined and back_config.http_check.method is vyos_defined %}
+ http-check send meth {{ back_config.http_check.method | upper }} uri {{ back_config.http_check.uri }}
+{% endif %}
+{% if back_config.http_check.expect is vyos_defined %}
+ http-check expect {{ back_config.http_check.expect }}
+{% endif %}
{% if back_config.balance is vyos_defined %}
{% set balance_translate = {'least-connection': 'leastconn', 'round-robin': 'roundrobin', 'source-address': 'source'} %}
balance {{ balance_translate[back_config.balance] }}