Hey everyone!
I'm new to traefik and using it through Kamal deployment tool. I have configured SSL for domain but still can't fix the connection to WSS. It simply doesn't connect to websocket and I receive "connection refused". I can't see any errors or at least I don't know where to look for it.
That's how my config looks like:
entryPoints.web.address: ":80"
entryPoints.websecure.address: ":443"
entryPoints.web.http.redirections.entryPoint.to: websecure
entryPoints.web.http.redirections.entryPoint.scheme: https
entryPoints.web.http.redirections.entrypoint.permanent: true
entrypoints.websecure.http.tls: true
entrypoints.websecure.http.tls.domains[0].main: "subdomain.domain.com"
certificatesResolvers.letsencrypt.acme.email: "myemail@.com"
certificatesResolvers.letsencrypt.acme.storage: "/letsencrypt/acme.json"
certificatesResolvers.letsencrypt.acme.httpchallenge: true
certificatesResolvers.letsencrypt.acme.httpchallenge.entrypoint: web