Enable http/3
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
Adrien Reslinger 2023-07-20 13:15:16 +02:00
parent 37c90c3c42
commit 8a6b74906e
Signed by: adrien
GPG key ID: DA7B27055C66D6DE
4 changed files with 26 additions and 6 deletions

View file

@ -28,7 +28,7 @@ data:
# http3:
# advertisedPort: 42
websecure:
address: ":8443/tcp"
address: ":8443"
http:
tls:
options: default
@ -36,8 +36,8 @@ data:
# - auth@file
# - secure_headers@file
# - crowdsec-bouncer@file
# http3:
# advertisedPort: 443
http3:
advertisedPort: 443
traefik:
address: ":9000/tcp"
metrics:
@ -50,7 +50,11 @@ data:
{% endif%}
{% for traefik_entrypoint in traefik_entrypoints %}
{{ traefik_entrypoint.name }}:
address: :{{ traefik_entrypoint.port }}
{% if traefik_entrypoint.proto is defined %}
address: ":{{ traefik_entrypoint.port }}/{{ traefik_entrypoint.proto | lower }}"
{% else %}
address: ":{{ traefik_entrypoint.port }}"
{% endif %}
{% if traefik_entrypoint.tls is defined or traefik_entrypoint.middlewares is defined %}
http:
{% if traefik_entrypoint.middlewares is defined %}