After installing and removing a plugin, I'm getting "use of closed network" error on startups

the full error:
ERR error="close tcp [::]:8080: use of closed network connection" entryPointName=traefik

please HELP, I'm on prod!

thi is my traefik.yml:

providers:
  swarm:
    exposedByDefault: false
    watch: true
  docker:
    exposedByDefault: false
    watch: true
    network: dokploy-network
  file:
    directory: /etc/dokploy/traefik/dynamic
    watch: true
entryPoints:
  web:
    address: ':80'
  websecure:
    address: ':443'
    http3:
      advertisedPort: 443
    http:
      tls:
        certResolver: letsencrypt
api:
  insecure: true
certificatesResolvers:
  letsencrypt:
    acme:
      email: <email>
      storage: /etc/dokploy/traefik/dynamic/acme.json
      httpChallenge:
        entryPoint: web```

Please check the timestamps, usually you only see the error during Traefik shutdown, before it is restarted.

Turned out it was a network problem from the server provider... made me freak out because I'm new to traefik!