环境:nginx 、 php7.2 、 mysql5.6
php安装扩展:fileinfo 、 redis
商城地址:https://你的域名/h5
推广地址:https://你的域名/en
后台地址:https://你的域名/RhlKBDYVug.php
商户地址:https://你的域名/index/user/login.html
后台搭建教程
宝塔安装环境配置截图
添加站点
上传代码到根目录,然后解压
修改数据库配置文件
导入数据库
运行目录设置
伪静态设置tp
后台地址:http://www.你的域名/RhlKBDYVug.php
admin
123456
商户上传产品地址:
http://www.你的域名/index/user/login.html
admin
123456
商户后台铺货
前端访问地址:
http://www.你的域名/h5
客服搭建
配置wss 服务
通过 wss://chat.你的域名 反向代理 http:// 127.0.0.1:7272 后面没有端口号直接使用(Nginx推荐)
需要新建一个站点,并绑定SSL证书,修改站点配置文件
• Nginx反向代理
修改后源码
server
{
listen 80;
listen 443 ssl http2;
server_name chat.你的域名;
#index index.php index.html index.htm default.php default.htm default.html;
#root /www/wwwroot/www.你的域名/public;
location / {
proxy_pass http://127.0.0.1:7272; #代理到上面的地址去,格式:http://域名:端口号,
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_connect_timeout 5s; #配置点1
proxy_read_timeout 60000s; #配置点2,如果没效,可以考虑这个时间配置长一点
proxy_send_timeout 60000s; #配置点3
}
#SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
#error_page 404/404.html;
ssl_certificate /www/server/panel/vhost/cert/chat.你的域名/fullchain.pem;
ssl_certificate_key /www/server/panel/vhost/cert/chat.你的域名/privkey.pem;
ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
add_header Strict-Transport-Security "max-age=31536000";
error_page 497 https://$host$request_uri;
#SSL-END
#ERROR-PAGE-START 错误页配置,可以注释、删除或修改
#error_page 404 /404.html;
#error_page 502 /502.html;
#ERROR-PAGE-END
#PHP-INFO-START PHP引用配置,可以注释或修改
include enable-php-72.conf;
#PHP-INFO-END
#REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
include /www/server/panel/vhost/rewrite/chat.你的域名.conf;
#REWRITE-END
#禁止访问的文件或目录
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
{
return 404;
}
#一键申请SSL证书验证目录相关设置
location ~ \.well-known{
allow all;
}
#禁止在证书验证目录放入敏感文件
if ( $uri ~ "^/\.well-known/.*\.(php|jsp|py|js|css|lua|ts|go|zip|tar\.gz|rar|7z|sql|bak)$" ) {
return 403;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
error_log /dev/null;
access_log /dev/null;
}
location ~ .*\.(js|css)?$
{
expires 12h;
error_log /dev/null;
access_log /dev/null;
}
access_log /www/wwwlogs/chat.你的域名.log;
error_log /www/wwwlogs/chat.你的域名.error.log;
}
在多用户商城后台 > 生成客户端 > 客户端配置 > IM服务器填写wss://chat.xxx.com即可
Linux运行IM即时通讯(启动命令)
1.远程连接Linux,宝塔面板 > 软件商店 > 宝塔SSH终端进入SSH 终端
cd命令 进入cd www/wwwroot/你的网站/此目录
2.启动即时通讯
首次启动请使用 php think wanlshop:chat start
正常启动成功后运行 php think wanlshop:chat start –daemon,叫做守护启动(终端关闭后会在后台持续运行)