traefik/integration/fixtures/proxy-protocol/without.toml

31 lines
542 B
TOML
Raw Normal View History

[global]
checkNewVersion = false
sendAnonymousUsage = false
[log]
2017-10-30 09:02:03 +00:00
logLevel = "DEBUG"
[entrypoints]
[entrypoints.web]
2018-11-14 09:18:03 +00:00
address = ":8000"
[entrypoints.web.proxyProtocol]
2018-11-14 09:18:03 +00:00
trustedIPs = ["1.2.3.4"]
2017-10-30 09:02:03 +00:00
[api]
2017-10-30 09:02:03 +00:00
[providers]
[providers.file]
[http.routers]
[http.routers.router1]
2018-11-14 09:18:03 +00:00
Service = "service1"
Rule = "Path(`/whoami`)"
2017-10-30 09:02:03 +00:00
[http.services]
[http.services.service1]
[http.services.service1.LoadBalancer]
2017-10-30 09:02:03 +00:00
[[http.services.service1.LoadBalancer.Servers]]
2018-11-14 09:18:03 +00:00
URL = "http://{{.WhoamiIP}}"
Weight = 1