traefik/integration/fixtures/acme/acme_tls.toml

57 lines
1.2 KiB
TOML
Raw Normal View History

logLevel = "DEBUG"
defaultEntryPoints = ["http", "https"]
[entryPoints]
[entryPoints.http]
2018-07-03 10:44:04 +00:00
address = "{{ .PortHTTP }}"
[entryPoints.https]
2018-07-03 10:44:04 +00:00
address = "{{ .PortHTTPS }}"
[entryPoints.https.tls]
[[entryPoints.https.tls.certificates]]
certFile = "fixtures/acme/ssl/wildcard.crt"
keyFile = "fixtures/acme/ssl/wildcard.key"
[acme]
2018-06-27 13:08:05 +00:00
email = "test@traefik.io"
storage = "/tmp/acme.json"
entryPoint = "https"
acmeLogging = true
2018-07-03 10:44:04 +00:00
onDemand = {{ .Acme.OnDemand }}
onHostRule = {{ .Acme.OnHostRule }}
keyType = "{{ .Acme.KeyType }}"
caServer = "{{ .Acme.CAServer }}"
2018-06-27 13:08:05 +00:00
2018-07-03 10:44:04 +00:00
{{if .Acme.HTTPChallenge }}
2018-06-27 13:08:05 +00:00
[acme.httpChallenge]
2018-07-03 10:44:04 +00:00
entryPoint = "{{ .Acme.HTTPChallenge.EntryPoint }}"
2018-06-27 13:08:05 +00:00
{{end}}
{{if .Acme.TLSChallenge }}
[acme.tlsChallenge]
{{end}}
2018-07-03 10:44:04 +00:00
{{range .Acme.Domains}}
2018-06-27 13:08:05 +00:00
[[acme.domains]]
main = "{{ .Main }}"
sans = [{{range .SANs }}
"{{.}}",
{{end}}]
{{end}}
[api]
[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"