traefik/integration/fixtures/multiple_provider.toml

33 lines
591 B
TOML
Raw Normal View History

[global]
checkNewVersion = false
sendAnonymousUsage = false
[log]
level = "DEBUG"
[entryPoints]
[entryPoints.web]
address = ":8000"
[api]
[providers]
[providers.docker]
endpoint = "unix:///var/run/docker.sock"
watch = true
exposedByDefault = false
[providers.file]
[http.routers]
[http.routers.router-1]
2018-11-14 09:18:03 +00:00
Service = "service-test"
Rule = "PathPrefix(`/file`)"
2018-04-11 14:30:04 +00:00
[http.services]
[http.services.service-test]
[http.services.service-test.LoadBalancer]
2018-11-14 09:18:03 +00:00
[[http.services.service-test.LoadBalancer.Servers]]
2018-11-14 09:18:03 +00:00
URL = "http://{{ .IP }}"