I've got my docker/traefik set-up so I can reach the dashboard and api over port 80. Therefore entrypoint 'Traefik' on port 8080 becomes obsolete, how can I disable this entrypoint or prevent it from being created?
Why I also want this besides cleaning up and closing unnecessary ports: I haven't found the correct syntax to set the default entrypoints, currently these are ['web', 'websecure', 'traefik']
I indeed have the api and ping enabled in the traefik.toml configuration:
# Enable API and dashboard
[api]
dashboard = true
insecure = false
# Name of the related entry point
#
# Optional
# Default: "traefik"
#
# entryPoint = "traefik"
# Enable ping
[ping]
Is it necessary to have this enabled in this manner when I'm instead using traefik itself to access it? I've included the docker-compose I'm using:
Thank you, changing the entrypoint for the [ping] did indeed solve this issue.
Would there be any negative consequences when setting the web and websecure as entrypoints for the [ping] functionallity?