Add traefik config
This commit is contained in:
35
traefik/traefik.toml
Normal file
35
traefik/traefik.toml
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user