traefik/integration/fixtures/multiple_provider.toml
2018-11-14 10:18:03 +01:00

29 lines
477 B
TOML

defaultEntryPoints = ["http"]
debug=true
[entryPoints]
[entryPoints.http]
address = ":8000"
[api]
[docker]
endpoint = "unix:///var/run/docker.sock"
watch = true
exposedByDefault = false
[file]
[Routers]
[Routers.router-1]
Service = "service-test"
Rule = "PathPrefix:/file"
[Services]
[Services.service-test]
[Services.service-test.LoadBalancer]
[[Services.service-test.LoadBalancer.Servers]]
URL = "http://{{ .IP }}"
Weight = 1