traefik/examples/acme/acme.toml

33 lines
598 B
TOML
Raw Normal View History

logLevel = "DEBUG"
defaultEntryPoints = ["http", "https"]
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
2017-09-11 17:10:04 +00:00
entryPoint = "https"
[entryPoints.https]
address = ":443"
[entryPoints.https.tls]
[acme]
email = "test@traefik.io"
storage = "/etc/traefik/conf/acme.json"
entryPoint = "https"
onDemand = false
2018-04-06 07:38:03 +00:00
onHostRule = true
2018-03-26 12:12:03 +00:00
caServer = "http://traefik.boulder.com:4001/directory"
2018-03-12 09:40:04 +00:00
[acme.httpChallenge]
entryPoint="http"
2018-03-12 09:40:04 +00:00
[api]
[docker]
endpoint = "unix:///var/run/docker.sock"
domain = "traefik.localhost.com"
watch = true
2018-04-06 07:38:03 +00:00
exposedByDefault = false