traefik/integration/fixtures/multiple_provider.toml
2019-09-06 15:08:04 +02:00

34 lines
589 B
TOML

[global]
checkNewVersion = false
sendAnonymousUsage = false
[log]
level = "DEBUG"
[entryPoints]
[entryPoints.web]
address = ":8000"
[api]
insecure = true
[providers]
[providers.docker]
watch = true
exposedByDefault = false
[providers.file]
filename = "{{ .SelfFilename }}"
## dynamic configuration ##
[http.routers]
[http.routers.router-1]
service = "service-test"
rule = "PathPrefix(`/file`)"
[http.services]
[http.services.service-test.loadBalancer]
[[http.services.service-test.loadBalancer.servers]]
url = "http://{{ .IP }}"