系统简介具体看这一篇:培训证书医院检查报告自主查询系统上线
系统环境:宝塔,Nginx,Mysql5.6,PHP8.0
1、PHP 命令行版本(PHP-CLI版本)需要设置 8.0,在配置文件处安装 fileinfo 扩展。
2、压缩包解压到根目录,配置运行目录 public
3、执行 http://xxxx/install.php
安装完成之后 在根目录打开终端
curl -Ss https://www.workerman.net/webman/fix-disable-functions | php
以解除禁用函数
再次执行
php start.php start -d
提示 Start success. 表示成功
4、打开宝塔的配置文件,添加如图如示的配置文件。
第一处:
upstream ccfcntsaas { server 127.0.0.1:2345; keepalive 10240; }
第二处, 在root /www/wwwroot/zhengshu.xxx.com/public;下面添加
location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_http_version 1.1; proxy_set_header Connection ""; if (!-f $request_filename){ proxy_pass http://ccfcntsaas; } }
至此安装完毕,就可以进入后台进行设置各种证书查询及报告查询模版了。
评论前必须登录!
注册