diff options
author | Alex W <embezzle.dev@proton.me> | 2024-04-15 18:23:05 +0100 |
---|---|---|
committer | Alex W <embezzle.dev@proton.me> | 2024-04-15 19:22:05 +0100 |
commit | aafe22d08bb38a579dd5075fd27a1b88beeca791 (patch) | |
tree | 13c3b82e730e181b89e947a6b7e449b5674578ab /data/templates/load-balancing | |
parent | f3d45223da40ea615d8b4ea73ec902462e3cebb4 (diff) | |
download | vyos-1x-aafe22d08bb38a579dd5075fd27a1b88beeca791.tar.gz vyos-1x-aafe22d08bb38a579dd5075fd27a1b88beeca791.zip |
T6242: load-balancing reverse-proxy: Ability for ssl backends to not verify server certificates
Diffstat (limited to 'data/templates/load-balancing')
-rw-r--r-- | data/templates/load-balancing/haproxy.cfg.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/load-balancing/haproxy.cfg.j2 b/data/templates/load-balancing/haproxy.cfg.j2 index 849cef74d..feb10d247 100644 --- a/data/templates/load-balancing/haproxy.cfg.j2 +++ b/data/templates/load-balancing/haproxy.cfg.j2 @@ -150,7 +150,7 @@ backend {{ back }} {% endfor %} {% endif %} {% if back_config.server is vyos_defined %} -{% set ssl_back = 'ssl ca-file /run/haproxy/' ~ back_config.ssl.ca_certificate ~ '.pem' if back_config.ssl.ca_certificate is vyos_defined else '' %} +{% set ssl_back = 'ssl ca-file /run/haproxy/' ~ back_config.ssl.ca_certificate ~ '.pem' if back_config.ssl.ca_certificate is vyos_defined else ('ssl verify none' if back_config.ssl.no_verify is vyos_defined else '') %} {% for server, server_config in back_config.server.items() %} server {{ server }} {{ server_config.address }}:{{ server_config.port }}{{ ' check' if server_config.check is vyos_defined }}{{ ' backup' if server_config.backup is vyos_defined }}{{ ' send-proxy' if server_config.send_proxy is vyos_defined }}{{ ' send-proxy-v2' if server_config.send_proxy_v2 is vyos_defined }} {{ ssl_back }} {% endfor %} |