traefik-container/traefik.toml

33 lines
612 B
TOML
Raw Normal View History

2022-09-11 21:41:24 +00:00
[entryPoints]
[entryPoints.http]
address = ":80"
2022-09-11 23:34:03 +00:00
[entryPoints.http.http]
[entryPoints.http.http.redirections]
[entryPoints.http.http.redirections.entryPoint]
to = "https"
scheme = "https"
2022-09-11 21:41:24 +00:00
[entryPoints.https]
address = ":443"
[entryPoints.traefik]
address = ":8080"
[api]
dashboard = true
[acme]
email = "info@example.com"
storage = "acme.json"
entryPoint = "https"
onHostRule = true
[acme.httpChallenge]
entryPoint = "http"
[providers]
# [providers.docker]
[providers.file]
directory = "/traefik.conf.d/"
watch = true
[log]
level = 'INFO'