SSL 的 PHP 棘轮问题

Posted

技术标签:

【中文标题】SSL 的 PHP 棘轮问题【英文标题】:PHP ratchet trouble with SSL 【发布时间】:2016-02-24 03:35:54 【问题描述】:

现在我的网站使用 https,我似乎无法连接棘轮。我什至安装了 stunnel。这是我的配置

演示:https://usyd.chat/react.html(见源代码和控制台)

推送服务器.php

<?php
require dirname(__DIR__) . '/vendor/autoload.php';

$loop   = React\EventLoop\Factory::create();
$pusher = new Unichat\Pusher;

// Listen for the web server to make a ZeroMQ push after an ajax request
$context = new React\ZMQ\Context($loop);
$pull = $context->getSocket(ZMQ::SOCKET_PULL);
$pull->bind('tcp://103.4.16.217:5555'); // Binding to 127.0.0.1 means the only client that can connect is itself
$pull->on('message', array($pusher, 'onInterfere'));

// Set up our WebSocket server for clients wanting real-time updates
$webSock = new React\Socket\Server($loop);
$webSock->listen(8080, '0.0.0.0'); // Binding to 0.0.0.0 means remotes can connect
$webServer = new Ratchet\Server\ioserver(
    new Ratchet\Http\HttpServer(
        new Ratchet\WebSocket\WsServer(
            new Ratchet\Wamp\WampServer(
                $pusher
            )
        )
    ),
    $webSock
);

$loop->run();

这是我连接到我的网络套接字的方式

var conn = new ab.Session('wss://usyd.chat:8080')

最后,我的 stunnel 配置

output = /etc/stunnel/stunnel.log

[websockets]
#cert = /etc/ssl/crt/primary.crt
cert = /etc/stunnel/stunnel.pem
accept = 8443
connect = 8080

当我在控制台上的 react.html 页面上没有任何反应。在我的推送类中,我有

echo "connected"

也在 onOpen 方法中,但它不会在控制台中记录任何内容。

任何帮助将不胜感激。 谢谢

【问题讨论】:

【参考方案1】:

看看这个类似问题的答案:https://***.com/a/47200806/3777134

现在您不需要 stunnel 或代理,您可以使用 React\Socket\SecureServer 类直接处理来自 Ratchet 服务器的安全连接。

【讨论】:

以上是关于SSL 的 PHP 棘轮问题的主要内容,如果未能解决你的问题,请参考以下文章

棘轮和 WSS 无法正常工作

棘轮、wss 和 nginx 配置

WebSockets + PHP(棘轮)登录系统

使用棘轮 php 将消息推送到 websockets 而没有 ZeroMQ

带有棘轮的 PHP WebSockets - 示例不起作用

棘轮:是不是应该通过“php”命令手动将其作为服务器运行?