How to use secure Websockets

Hello,

I was able to connect using Bosh and https like so:
https://web.com:7443/http-bind/

I added the Web Sockets plugin and can connect like this:
ws://web.com:7070/ws/

But I cannot use my SSL to use the wss protocol:
wss://web.com:7443/ws

The stream closes and disconnects immediately which makes me think that there is some certification issue. I’m not sure where to continue from here, but modifying NGINX has not proved helpful thus far.

you need a proxy .

Basically you need a webserver (like apache ) in front of everything which can proxypass (even websocket protocol) to your browser as wss://web.com:ws (this has to be done in the default.ssl config file for apache for example ).

Its how i’ve done it .And this proxy method allows to bind more server features to one address.
Having ports used in the address other than 80 or 443 is not taken as secure by the browsers or any api ,so communication is stopped when SSL requirements are not met.