traefik/integration/fixtures/simple_stats.toml

40 lines
773 B
TOML
Raw Normal View History

[global]
2019-07-01 09:30:05 +00:00
checkNewVersion = false
sendAnonymousUsage = false
[log]
2019-07-01 09:30:05 +00:00
level = "DEBUG"
2022-11-21 17:36:05 +00:00
noColor = true
[entryPoints]
[entryPoints.web]
2019-07-01 09:30:05 +00:00
address = ":8000"
[api]
2019-09-06 13:08:04 +00:00
insecure = true
2018-04-11 14:30:04 +00:00
2019-07-01 09:30:05 +00:00
[providers.file]
filename = "{{ .SelfFilename }}"
2019-07-01 09:30:05 +00:00
## dynamic configuration ##
[http.routers]
[http.routers.router1]
2019-07-01 09:30:05 +00:00
entryPoints = ["web"]
service = "service1"
rule = "PathPrefix(`/whoami`)"
[http.routers.router2]
2019-07-01 09:30:05 +00:00
entryPoints = ["traefik"]
service = "service2"
rule = "PathPrefix(`/whoami`)"
[http.services]
2019-07-01 09:30:05 +00:00
[http.services.service1.loadBalancer]
[[http.services.service1.loadBalancer.servers]]
url = "{{ .Server1 }}"
[http.services.service2.loadBalancer]
[[http.services.service2.loadBalancer.servers]]
url = "{{ .Server2 }}"