sophia.events/proxy/https.toml
2018-02-02 13:11:49 +01:00

38 lines
736 B
TOML

# Entrypoints
defaultEntryPoints = ["http", "https"]
# Global configuration
debug = true
logLevel = "DEBUG"
# Web configuration backend
[api]
address = ":8080"
[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]
email = "admin@sophia.events"
storageFile = "acme.json"
entryPoint = "https"
[acme.httpChallenge]
entryPoint = "http"
[[acme.domains]]
main = "sophia.events"
san = ["www.sophia.events"]