36 lines
735 B
TOML
36 lines
735 B
TOML
debug = true
|
|
traefikLogsFile = "/etc/traefik/log/traefik.log"
|
|
accessLogsFile = "/etc/traefik/log/access.log"
|
|
logLevel = "DEBUG"
|
|
|
|
defaultEntryPoints = ["https", "http"]
|
|
|
|
[acme]
|
|
email = "autonomic-coop@posteo.com"
|
|
storage = "/etc/traefik/acme/acme.json"
|
|
entryPoint = "https"
|
|
onHostRule = false
|
|
[acme.dnsChallenge]
|
|
provider = "digitalocean"
|
|
delayBeforeCheck = 0
|
|
|
|
[[acme.domains]]
|
|
main = "map.ojuso.org"
|
|
sans = ["translate.ojuso.org"]
|
|
|
|
[entryPoints]
|
|
[entryPoints.http]
|
|
address = ":80"
|
|
[entryPoints.http.redirect]
|
|
entryPoint = "https"
|
|
[entryPoints.https]
|
|
address = ":443"
|
|
compress = false
|
|
[entryPoints.https.tls]
|
|
|
|
[docker]
|
|
endpoint = "unix:///var/run/docker.sock"
|
|
domain = "docker.localhost"
|
|
watch = true
|
|
|