Add stub traefik static configuration

This commit is contained in:
Kienan Stewart 2022-09-11 17:41:24 -04:00
parent b49546005e
commit 39cb004e2e
1 changed files with 27 additions and 0 deletions

27
traefik.toml Normal file
View File

@ -0,0 +1,27 @@
[entryPoints]
[entryPoints.http]
address = ":80"
[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'