PHP Web 套接字未在 SSL 中连接
PHP web socket not connect in SSL
我正在尝试使用 WSS.
连接 PHP 网络套接字
- 参考下面的代码link
https://github.com/sanwebe/Chat-Using-WebSocket-and-PHP-Socket
- 报错如下
WebSocket connection to 'wss://php.fmv.cc:12345/' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR
- 服务器配置如下
- 这些是我正在尝试的 link
https://php.fmv.cc/c3.php (wss)
这将尝试在以下位置连接套接字:ws://php.fmv.cc:12345/ 和 wss://php.fmv.cc :12345/
谢谢...
您好在服务器配置上进行如下设置
ProxyPass /wss/ ws://127.0.0.1:12345/
ProxyPassReverse /wss/ ws://127.0.0.1:12345/
在客户端,您可以使用您的域连接它,但未提及端口。
use like wss://php.fmv.cc/wss
我正在尝试使用 WSS.
连接 PHP 网络套接字- 参考下面的代码link
https://github.com/sanwebe/Chat-Using-WebSocket-and-PHP-Socket
- 报错如下
WebSocket connection to 'wss://php.fmv.cc:12345/' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR
- 服务器配置如下
- 这些是我正在尝试的 link
https://php.fmv.cc/c3.php (wss)
这将尝试在以下位置连接套接字:ws://php.fmv.cc:12345/ 和 wss://php.fmv.cc :12345/
谢谢...
您好在服务器配置上进行如下设置
ProxyPass /wss/ ws://127.0.0.1:12345/
ProxyPassReverse /wss/ ws://127.0.0.1:12345/
在客户端,您可以使用您的域连接它,但未提及端口。
use like wss://php.fmv.cc/wss