sophia.events/tls/traefik.toml

38 lines
739 B
TOML
Raw Normal View History

2018-01-29 07:33:15 +00:00
# Global configuration
debug = true
logLevel = "DEBUG"
# Web configuration backend
2018-01-29 22:28:33 +00:00
[api]
2018-01-29 07:33:15 +00:00
address = ":8080"
# Entrypoints
defaultEntryPoints = ["http", "https"]
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
[entryPoints.https.tls]
# Docker configuration backend
[docker]
endpoint = "unix:///var/run/docker.sock"
domain = "sophia.events"
watch = true
swarmmode = true
exposedbydefault = false
# Let's Encrypt configuration
[acme]
2018-01-29 11:52:35 +00:00
email = "admin@sophia.events"
2018-01-29 07:33:15 +00:00
storageFile = "acme.json"
entryPoint = "https"
[acme.httpChallenge]
entryPoint = "http"
[[acme.domains]]
main = "sophia.events"
2018-01-29 09:10:21 +00:00
san = ["www.sophia.events"]