This repository has been archived on 2023-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
max/roles/traefik/templates/traefik.toml.j2

44 lines
984 B
Text
Raw Normal View History

2023-01-02 16:39:17 +00:00
loglevel = "DEBUG"
[entryPoints]
[entryPoints.web]
address = ":80"
2023-01-22 22:34:37 +00:00
[entryPoints.web.http.redirections.entryPoint]
to = "websecure"
scheme = "https"
permanent = true
2023-01-02 16:39:17 +00:00
[entryPoints.websecure]
2023-01-22 22:34:37 +00:00
address = ":443"
2023-01-06 16:35:36 +00:00
[entryPoints.ssh]
2023-01-22 22:34:37 +00:00
address = ":{{ git_ssh_port }}"
2023-01-14 17:00:01 +00:00
[entryPoints.video]
2023-01-22 22:34:37 +00:00
address = ":{{ jitsi_videobridge_port }}/udp"
[entryPoints.internal]
address = ":{{ traefik_api_port }}"
2023-01-02 16:39:17 +00:00
[api]
2023-01-22 22:34:37 +00:00
insecure = false
dashboard = true
2023-01-02 16:39:17 +00:00
[metrics]
[metrics.prometheus]
entryPoint = "internal"
2023-01-02 16:39:17 +00:00
[providers.docker]
endpoint = "unix:///var/run/docker.sock"
[providers.file]
filename = "/etc/traefik/services.toml"
[certificatesResolvers.geokunis.acme]
email = "pim@kunis.nl"
storage = "acme.json"
[certificatesResolvers.geokunis.acme.httpChallenge]
entryPoint = "web"
[certificatesResolvers.pizzapim.acme]
email = "pim@kunis.nl"
storage = "acme.json"
[certificatesResolvers.pizzapim.acme.httpChallenge]
entryPoint = "web"