Websocket support

Do I have to run my app on port 443 for Websocket support or can i run it on port 80?

Websockets are run on the same port as regular requests, whatever that port may be. 443 vs 80 is about HTTPS vs HTTP, it doesn’t affect websockets.

1 Like

thanks @benwilson512