Symfony 棘轮 WSS
Symfony Ratchet WSS
HTTPS => WS 通讯有问题,找不到解决方法
我正在使用 Symfony 4.1 和 Ratchet WsServer。服务器通过 9090 端口上的 Symfony 命令启动,并通过 http 在本地机器上与 ws 正常工作。当然在 https 上我将它切换到 wss 并得到了这个错误:
WebSocket connection to 'wss://servername:9090/' failed: WebSocket opening handshake timed out
我的后端代码:
protected function execute(InputInterface $input, OutputInterface $output)
{
$server = IoServer::factory(new HttpServer(
new WsServer(
new Widget($this->getContainer(), $this->logger)
)
), 9090);
$server->run();
}
可能有人知道如何解决它。我在相同情况下看到了一些关于 nginx 和 apache 配置的指南,但我不确定,因为在这种情况下服务器从 PHP 和 Symfony.
启动
另一个有趣的时刻是我尝试通过浏览器连接到 WSS,我得到了同样的错误。看起来问题不在证书中,而是在服务器中。
我用NGINX代理解决了。我有 NGINX+Apache,在这种情况下,它有助于向 NGINX 添加代理。
upstream websocket_server {
server app-ip:9091;
}
server {
listen 46.101.45.214:443;
server_name app-name ;
ssl on;
ssl_certificate /home/admin/conf/web/ssl.app-name.pem;
ssl_certificate_key /home/admin/conf/web/ssl.app-name.key;
error_log /var/log/apache2/domains/app-name.error.log error;
location /wss/ {
proxy_pass http://websocket_server;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_read_timeout 86400;
}
.....
HTTPS => WS 通讯有问题,找不到解决方法
我正在使用 Symfony 4.1 和 Ratchet WsServer。服务器通过 9090 端口上的 Symfony 命令启动,并通过 http 在本地机器上与 ws 正常工作。当然在 https 上我将它切换到 wss 并得到了这个错误:
WebSocket connection to 'wss://servername:9090/' failed: WebSocket opening handshake timed out
我的后端代码:
protected function execute(InputInterface $input, OutputInterface $output)
{
$server = IoServer::factory(new HttpServer(
new WsServer(
new Widget($this->getContainer(), $this->logger)
)
), 9090);
$server->run();
}
可能有人知道如何解决它。我在相同情况下看到了一些关于 nginx 和 apache 配置的指南,但我不确定,因为在这种情况下服务器从 PHP 和 Symfony.
启动另一个有趣的时刻是我尝试通过浏览器连接到 WSS,我得到了同样的错误。看起来问题不在证书中,而是在服务器中。
我用NGINX代理解决了。我有 NGINX+Apache,在这种情况下,它有助于向 NGINX 添加代理。
upstream websocket_server {
server app-ip:9091;
}
server {
listen 46.101.45.214:443;
server_name app-name ;
ssl on;
ssl_certificate /home/admin/conf/web/ssl.app-name.pem;
ssl_certificate_key /home/admin/conf/web/ssl.app-name.key;
error_log /var/log/apache2/domains/app-name.error.log error;
location /wss/ {
proxy_pass http://websocket_server;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_read_timeout 86400;
}
.....