traefik/integration/fixtures/multiple_provider.toml

29 lines
477 B
TOML
Raw Normal View History

defaultEntryPoints = ["http"]
debug=true
[entryPoints]
[entryPoints.http]
address = ":8000"
[api]
[docker]
endpoint = "unix:///var/run/docker.sock"
watch = true
2018-04-06 07:38:03 +00:00
exposedByDefault = false
[file]
2018-11-14 09:18:03 +00:00
[Routers]
[Routers.router-1]
Service = "service-test"
Rule = "PathPrefix:/file"
2018-04-11 14:30:04 +00:00
2018-11-14 09:18:03 +00:00
[Services]
[Services.service-test]
[Services.service-test.LoadBalancer]
[[Services.service-test.LoadBalancer.Servers]]
URL = "http://{{ .IP }}"
Weight = 1