Код: Выделить всё
$opts = [
'ssl' => [
'cafile' => 'core/certs/root.pem',
'local_cert' => 'core/certs/client.pem',
'local_pk' => 'core/certs/client_key.pem'
]
];
$content = stream_context_create($opts, $opts);
$socket = stream_socket_server(
"wss://$host",
$errno,
$errstr,
STREAM_SERVER_BIND|STREAM_SERVER_LISTEN,
$content
);
Не удалось найти транспорт сокета «wss» — вы забыли это сделать? включить
его при настройке PHP? (0)
Как включить транспорт сокетов «wss» в Apache?
Подробнее здесь: https://stackoverflow.com/questions/693 ... nsport-wss