How to not expose :8080 but rather redirect :80/dashboard there?

I am slowly centralizing all my endpoints in Traefik (HTTP and TCP) and would like to get rid of the default :8080 port.

Today in order to access the dashboard I point to http://traefik.example.com:8080. It is possible to configure it so that I can call http://traefik.example.com/dashboard?

Port :80 is one of the endpoints today, handing HTTP traffic to HTTP docker containers.

Hello,

To remove the use of 8080, you have to use secure mode:

https://docs.traefik.io/v2.1/operations/dashboard/#secure-mode

I had a similar question. See my process to to make it happen here:

Cheers!