In my traefik.toml file I have the following:
[file]
watch = true
[consul]
endpoint = "consul:8500"
watch = true
prefix = "traefik"
Traefik dashboard doesn't pick up anything stored in consul if I don't include the [file] flag. (even after executing "traefik storeconfig" in the traefik-alpine container)
But this also causes a problem. If I do include the [file] flag, in the Traefik dashboard ui, File and Consul are separate providers.
When I then go and change, say, a backend url in the consul key/value store, it shows up changed in the Consul provider in the Traefik dashboard, but not in the File provider.
When I try hitting a frontend connected to that backend, it still routes to the old url (presumably to the file provider).
Is there a way to tell Traefik to give the consul provider precedence over the file provider? Or is there a way to utilize the consul provider without having to explicitly place a [File] flag in the initial config?
Hello @ratchet5000,
Can you please provide us with the full Traefik configuration (toml, and your compose file)?
Thanks!
Sure, here they are with the backend urls generified and auth removed
traefik.toml
defaultEntryPoints = ["http", "https"]
[entryPoints]
[entryPoints.http]
address = ":80"
[docker]
endpoint = "unix:///var/run/docker.sock"
network = "traefik"
watch = true
[file]
watch = true
[consul]
endpoint = "consul:8500"
watch = true
prefix = "traefik"
[backends]
[backends.google]
[backends.google.servers.com]
url = "https://www.google.com"
weight = 20
[backends.google.servers.us]
url = "https://www.google.us"
weight = 10
[backends.google.circuitBreaker]
expression = "NetworkErrorRatio() > 0.5"
[backends.google.maxConn]
amount = 5
extractorfunc="request.host"
[frontends]
[frontends.maps]
backend = "google"
passHostHeader = true
rule = "Path:/maps"
[frontends.maps.rateLimit]
extractorFunc = "client.ip"
[frontends.maps.rateLimit.rateSet.maps]
period = 10
average = 10
burst = 20
docker-compose.yml
version: '3.7'
services:
reverse-proxy:
image: traefik:alpine
command: --web --web.address=:81 \
--docker --docker.watch --docker.domain=localhost \
--debug --logLevel=DEBUG \
--defaultentrypoints=http \
--docker.exposedbydefault=false \
--api
ports:
- 80:80
- 81:81
- 443:443
- 8080:8080
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./traefik.toml:/traefik.toml
consul:
image: consul:latest
ports:
- "8500:8500"
Hello @ratchet5000,
Traefik has the capability to load its static configuration from a variety of sources: (https://docs.traefik.io/v1.7/basics/#static-traefik-configuration), and dynamic configuration from multiple providers.
As configured, you have static configuration coming from the Configuration file, and from Consul, and your command arguments in your compose file.
You also have Dynamic configuration coming from Docker, Consul, and the File provider. These are all independent of each other, and are not consolidated.
Let me ask a few questions:
- Why are you using consul? Are you using it to dynamically configure frontends and backends? If so, why would you want to use the file provider to define frontends/backends?
- Are you using the docker provider?
- What version of traefik are you using? The
--web
provider has been deprecated for a few versions now, so you should not use it.

Can you add your google
frontend + backend into consul? if so, there is no need for the file provider, or the configuration toml file at all...
The documentation (Key-value Store Configuration | Traefik | v1.7) demonstrates uploading the configuration to consul, and then does NOT use the configuration file again. It only uses consul.
What I am trying to illustrate is that by mixing and duplicating configuration sources, finding out where the applied configuration is coming from is difficult.
This is why I would suggest streamlining your configuration by doing the following:
- Enable consul via the CLI (flags) only.
- Do not use toml/config file, since you are not doing anything that requires it.
- Move your google frontend+backend to the consul provider either by using storeconfig, or by manually creating it.
This will allow you to only have one source of configuration: consul, and will make debugging 100x easier.
1 Like
Alright thanks, was definitely thrown off by that page in the docs