traefik/integration/fixtures/acme/acme_provided.toml

40 lines
835 B
TOML
Raw Normal View History

logLevel = "DEBUG"
defaultEntryPoints = ["http", "https"]
[entryPoints]
[entryPoints.http]
2018-03-05 19:54:04 +00:00
address = ":5002"
[entryPoints.https]
address = ":5001"
[entryPoints.https.tls]
[[entryPoints.https.tls.certificates]]
certFile = "fixtures/acme/ssl/wildcard.crt"
keyFile = "fixtures/acme/ssl/wildcard.key"
[acme]
email = "test@traefik.io"
2018-04-10 08:52:04 +00:00
storage = "/tmp/acme.json"
entryPoint = "https"
2018-06-15 14:08:03 +00:00
acmeLogging = true
onDemand = {{.OnDemand}}
2018-04-06 07:38:03 +00:00
onHostRule = {{.OnHostRule}}
2018-03-26 12:12:03 +00:00
caServer = "http://{{.BoulderHost}}:4001/directory"
2018-03-05 19:54:04 +00:00
[acme.httpChallenge]
entryPoint="http"
[file]
[backends]
[backends.backend]
[backends.backend.servers.server1]
url = "http://127.0.0.1:9010"
2018-04-11 14:30:04 +00:00
weight = 1
[frontends]
[frontends.frontend]
backend = "backend"
[frontends.frontend.routes.test]
rule = "Host:traefik.acme.wtf"