Dashboard gives me an error (Bad gateway)

hello,

could you try that:

labels:
    - "traefik.enable=true"
    - "traefik.docker.network=proxy"

    - "traefik.http.routers.traefik.rule=Host(`traefik.domain.tld`)"
    - "traefik.http.routers.traefik.entrypoints=web-secure"
    - "traefik.http.routers.traefik.tls=true"
    - "traefik.http.routers.traefik.tls.certresolver=le-live"
    - "traefik.http.routers.traefik.tls.options=default"
    - "traefik.http.routers.traefik.middlewares=admin-auth@file"
    - "traefik.http.routers.traefik.service=api@internal"

    - "traefik.http.routers.traefik-insecure.rule=Host(`traefik.domain.tld`)"
    - "traefik.http.routers.traefik-insecure.entrypoints=web"
    - "traefik.http.routers.traefik-insecure.middlewares=https-redirect@file"
    
    - "traefik.http.services.traefik.loadbalancer.server.port=888" # required by swarm but not used.
1 Like