1
0
Fork 0
docker-easy-haproxy/src/templates/bind.j2
Joao Gilberto Magalhaes 166b75cd75 Minor Fix Pre-Merge
2023-07-03 15:02:32 -05:00

8 lines
285 B
Django/Jinja

{% if "ssl" in o %}
bind *:{{ o["port"] }} ssl crt /certs/certbot/ alpn h2,http/1.1 crt /certs/haproxy/ alpn h2,http/1.1
{% elif "h2" in o and o["h2"] %}
bind *:{{ o["port"] }} proto h2
option http-use-htx
{% else %}
bind *:{{ o["port"] }}
{% endif %}