1
0
mirror of https://github.com/containous/traefik.git synced 2025-01-10 01:17:55 +03:00
traefik/integration/fixtures/multiple_provider.toml

35 lines
606 B
TOML
Raw Normal View History

[global]
2019-07-01 12:30:05 +03:00
checkNewVersion = false
sendAnonymousUsage = false
[log]
2019-07-01 12:30:05 +03:00
level = "DEBUG"
2022-11-21 20:36:05 +03:00
noColor = true
[entryPoints]
[entryPoints.web]
2019-07-01 12:30:05 +03:00
address = ":8000"
[api]
2019-09-06 16:08:04 +03:00
insecure = true
[providers]
2019-07-01 12:30:05 +03:00
[providers.docker]
watch = true
exposedByDefault = false
2019-07-01 12:30:05 +03:00
[providers.file]
filename = "{{ .SelfFilename }}"
2019-07-01 12:30:05 +03:00
## dynamic configuration ##
[http.routers]
[http.routers.router-1]
2019-07-01 12:30:05 +03:00
service = "service-test"
rule = "PathPrefix(`/file`)"
2018-04-11 17:30:04 +03:00
[http.services]
2019-07-01 12:30:05 +03:00
[http.services.service-test.loadBalancer]
[[http.services.service-test.loadBalancer.servers]]
url = "http://{{ .IP }}"