Thanks for the detailed response! You helped me get it working.
I was trying to connect using ws://myservice.onrender.com:10000.
Your answer helped me discover two things that I needed to fix:
- From the client
ws://does not work - you must usewss://to connect - From the client, do not specify a port. I needed to drop the
:10000and just usews://myservice.onrender.com
Now it works like a charm. I’d love to see both of these points added to the official documentation.