0

我使用easyrtc EasyRtc Github

我使用 IFRAME 流式加载我的网页 PHP。当我的网站是 HTTP 协议时,一切都很好。现在我将 HTTP 连接更改为 HTTPS,连接开始不起作用。Node js 安装在同一台服务器上,我通过 ip 连接到它,没有 https 协议。如何设置连接?

4

1 回答 1

0

使用 https 模块创建服务器时传递假证书和私钥,例如

var webServer = https.createServer({key: privateKey, cert: certificate}, httpApp).listen(8000);

快乐编码

于 2014-06-22T07:40:58.213 回答