Add traefik config

This commit is contained in:
2018-04-19 11:56:15 +00:00
parent 0758b6e223
commit f57fc14623
2 changed files with 59 additions and 0 deletions

35
traefik/traefik.toml Normal file
View File

@ -0,0 +1,35 @@
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