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 15:15:07 +02:00
[serversTransport]
2017-06-23 15:15:07 +02:00
# Use certificate in net/internal/testcert.go
2018-04-06 03:38:03 -04:00
rootCAs = [ "fixtures/https/rootcas/local.crt"]
2017-06-23 15:15:07 +02:00
[entryPoints]
[entryPoints.web]
2017-06-23 15:15:07 +02:00
address = ":8081"
[api]
2017-06-23 15:15:07 +02:00
[providers]
[providers.file]
2017-06-23 15:15:07 +02:00
[http.routers]
[http.routers.router1]
2018-11-14 10:18:03 +01:00
Service = "service1"
Rule = "Path(`/ping`)"
2018-11-14 10:18:03 +01:00
[http.services]
[http.services.service1]
[http.services.service1.LoadBalancer]
2018-11-14 10:18:03 +01:00
[[http.services.service1.LoadBalancer.Servers]]
2018-11-14 10:18:03 +01:00
URL = "{{ .BackendHost }}"