系统前端首页,用户可根据自己需要选择自己想要的咨询师购买其服务
在服务期限内咨询师会给你解答所有心理方面的问题并给出相应的治疗意见,聊天过程中可以发送文字,语音,表情及图片
在个人中心,用户可以查看订单,注册认证成为咨询师,充值,查看账户流水联系客服等等功能
咨询师可以设置咨询收费价格,查看委托,修改个人信息等
后端有系统的各种配置及各个数据的统计及列表展示
使用说明
请配置https
请配置配置文件
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
# 这里的backend可以改成自己需要的名称,我自己用的是wss。
upstream wss {
# 这里的localhost是映射本地服务器,也可以是外网ip,9526是我ws开启的端口。
server localhost:9526;
}
nginx 伪静态配置规则
location /addons/zs_xlg_android{
if (!-e $request_filename){
rewrite ^(.*)$ /addons/zs_xlg_android/index.php?s=$1 last; break;
}
}
location /wss {
proxy_pass http://wss;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
socket 启动目录 addons/zs_xlg_android/Chat 启动命令 php Chat.php start -d
定时任务订单自动验收 https://+域名+/addons/zs_xlg_android/api/task/auto_accept
定时任务订单自动结算 https://+域名+/addons/zs_xlg_android/api/task/auto_settle
还没有评论,来说两句吧...