现在文档中说明不能使用 https,原因是需要配置 wss;下面我们就详细说明一下,认真看哦
第一步:nginx 配置 wss
nginx 配置参考
1、已经安装 nginx,版本不低于 1.3
2、知识付费 Workerman 监听的是 20014 端口 (websocket 协议)
nginx 配置类似如下:
server {
location /wss/ {
proxy_pass http://127.0.0.1:20014;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection \"Upgrade\";
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
}
# location / {} 站点的其它配置...
}
第二步:修改 websocket 服务
配置完成后需要修改知识付费中根目录 public/wap/first/zsff/js/WebSocket.js 文件,用来区别 https 和 http 访问
if (document.location.protocol == \"https:\"){
that.ws = new WebSocket(\"wss://\" + document.domain + \"/wss/\"+ \":\" + port+\'?uid=\'+window.uid+\'&room=\'+window.room);
}else {
that.ws = new WebSocket(\"ws://\" + document.domain + \":\" + port+\'?uid=\'+window.uid+\'&room=\'+window.room);
}
第三步:在宝塔中给知识付费站点配置证书,知识付费后台基础配置下的网站网站链接改成 https;并且网站所有访问链接均改成 https,包括微信公众号菜单等
第四步:使用命令 php think workerman status 检查 workerman 是否开启中,若是开启需要使用命令 php think workerman stop 关闭然后开启 workerman;如果关闭直接开启 workerman。
这样直播使用 https 就可以实现了
源码附件已经打包好上传到百度云了,大家自行下载即可~
链接: https://pan.baidu.com/s/14G-b...
提取码: yu27
百度云链接不稳定,随时可能会失效,大家抓紧保存哈。
如果百度云链接失效了的话,请留言告诉我,我看到后会及时更新~
开源地址
码云地址:
http://github.crmeb.net/u/defu
Github 地址:
http://github.crmeb.net/u/defu
开源不易,Star 以表尊重,感兴趣的朋友欢迎 Star,提交 PR,一起维护开源项目,造福更多人!