1
0
Fork 0
docker-easy-haproxy/templates/bind.j2
Joao Gilberto Magalhaes 44f8d2756f Minor Fixes; Multi-Arch.
2021-08-10 17:56:09 -05:00

8 lines
240 B
Django/Jinja

{% if "ssl_cert" in o %}
bind *:{{ o["port"] }} ssl crt {{ o["ssl_cert"] }}
{% elif "h2" in o and o["h2"] %}
bind *:{{ o["port"] }} proto h2
option http-use-htx
{% else %}
bind *:{{ o["port"] }}
{% endif %}