traefik/integration/fixtures/https/rootcas/https_with_file.toml

32 lines
562 B
TOML
Raw Normal View History

[global]
checkNewVersion = false
sendAnonymousUsage = false
[log]
level = "DEBUG"
2017-06-23 13:15:07 +00:00
[serversTransport]
2017-06-23 13:15:07 +00:00
# Use certificate in net/internal/testcert.go
2018-04-06 07:38:03 +00:00
rootCAs = [ "fixtures/https/rootcas/local.crt"]
2017-06-23 13:15:07 +00:00
[entryPoints]
[entryPoints.web]
2017-06-23 13:15:07 +00:00
address = ":8081"
[api]
2017-06-23 13:15:07 +00:00
[providers]
[providers.file]
2017-06-23 13:15:07 +00:00
[http.routers]
[http.routers.router1]
2018-11-14 09:18:03 +00:00
Service = "service1"
Rule = "Path(`/ping`)"
2018-11-14 09:18:03 +00:00
[http.services]
[http.services.service1]
[http.services.service1.LoadBalancer]
2018-11-14 09:18:03 +00:00
[[http.services.service1.LoadBalancer.Servers]]
2018-11-14 09:18:03 +00:00
URL = "{{ .BackendHost }}"