patrickeasters / traefik-k8s-tls-example

42 stars 17 forks source link

why traefik 8080 console cannot visit ? #2

Closed autherlj closed 6 years ago

autherlj commented 6 years ago

I according you config and final everything working fine but when I visit traefik web console, seems it cannot monitoring

patrickeasters commented 6 years ago

The traefik.toml file I included did not come with an entrypoint for the api/dashboard enabled. In your traefik.toml file, try adding something like this under your entrypoints section in order to force it to listen on port 8080 for the dashboard:

[entryPoints]
  [entryPoints.traefik]
  address = ":8080"
autherlj commented 6 years ago

okey, tks!