The Dashboard

See What's Going On

The dashboard is the central place that shows you the current active routes handled by Traefik.

Dashboard - Providers

The dashboard in action

By default, the dashboard is available on / on port :8080.

Did You Know?

It is possible to customize the dashboard endpoint.To learn how, refer to the API documentation

Enabling the Dashboard

To enable the dashboard, you need to enable Traefik's API.

  1. [api]
  2. # Dashboard
  3. #
  4. # Optional
  5. # Default: true
  6. #
  7. dashboard = true
  1. api:
  2. # Dashboard
  3. #
  4. # Optional
  5. # Default: true
  6. #
  7. dashboard: true
  1. # Dashboard
  2. #
  3. # Optional
  4. # Default: true
  5. #
  6. --api.dashboard=true

API/Dashboard Security

To secure your dashboard, the use of a service named [email protected] is mandatory and requires the definition of a router using one or more security middlewareslike authentication (basicAuth , digestAuth, forwardAuth) or whitelisting.More information about [email protected] can be found in the API documentation

Did You Know?

The API provides more features than the Dashboard.To learn more about it, refer to the API documentation