Hello. Translated the site to https and can not figure out how to translate sockets. On http, sockets were connected via ws://sitename.com:3003 , now they need to be accessible via wss://sitename.com:3003 . Tell me, please, how to do it.
PHP:
$loop = React\EventLoop\Factory::create(); $context = new React\ZMQ\Context($loop); $pull = $context->getSocket(ZMQ::SOCKET_PULL); $pull->bind('tcp://127.0.0.1:3004'); $pull->on('message', array($pusher, 'onMessage')); $webSock = new React\Socket\Server($loop); $webSock->listen(3003, '0.0.0.0'); $webServer = new Ratchet\Server\IoServer( new Ratchet\Http\HttpServer( new Ratchet\WebSocket\WsServer( new Ratchet\Wamp\WampServer( $pusher ) ) ), $webSock ); $loop->run(); Js:
window.phpSocket = new ab.Session('wss://sitename.com:3003', Nginx:
server { listen 443 ssl; keepalive_timeout 70; client_max_body_size 500M; root /var/www/path/to/site/root; index index.php; server_name sitename.com; gzip_static on; gzip on; gzip_min_length 1000; gzip_proxied expired no-cache no-store private auth; gzip_types text/plain application/xml text/css text/javascript application/javascript; ssl on; ssl_certificate /etc/letsencrypt/live/sitename.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/sitename.com/privkey.pem; ssl_session_cache shared:SSL:10m; ssl_session_timeout 10m;