traefik/integration/fixtures/acme/acme_tls_dynamic.toml

42 lines
794 B
TOML
Raw Normal View History

[global]
checkNewVersion = false
sendAnonymousUsage = false
[log]
level = "DEBUG"
2018-06-27 13:08:05 +00:00
[entryPoints]
[entryPoints.web]
2018-07-03 10:44:04 +00:00
address = "{{ .PortHTTP }}"
[entryPoints.web-secure]
2018-07-03 10:44:04 +00:00
address = "{{ .PortHTTPS }}"
2018-06-27 13:08:05 +00:00
[acme]
email = "test@traefik.io"
storage = "/tmp/acme.json"
# entryPoint = "https"
2018-06-27 13:08:05 +00:00
acmeLogging = true
2018-07-03 10:44:04 +00:00
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}}
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]
[providers]
[providers.file]
filename = "fixtures/acme/certificates.toml"
watch = true