项目地址: https://github.com/Anankke/ss-panel-v3-mod_Uim
环境要求: 宝塔、1GB内存、centos7
安装宝塔,LNMP环境部署后添加配置网站vivi.ink
复制下面全部代码,然后粘贴到ssh命令端:
cd /www/wwwroot/vivi.ink
yum update && yum install git -y
git clone -b master https://github.com/Anankke/ss-panel-v3-mod_Uim.git tmp && mv tmp/.git . && rm -rf tmp && git reset --hard
cp config/.config.php.example config/.config.php
chown -R root:root *
chmod -R 755 *
chown -R www:www storage
php composer.phar install
软件设置php修改:
关闭 display_errors
禁用函数 system proc_open proc_get_status
运行模式设为静态
运行目录设置为public,取消勾选防跨站攻击
设置伪静态:
location / {
try_files $uri /index.php$is_args$args;
}
新建数据库,并导入sql文件夹下的glzjin_all.sql
进入网站根目录/config/config.php修改参数:
appName
baseUrl
db_database
db_username
db_password
创建管理员:
php xcat initQQWry //下载ip解析库,必须
php xcat createAdmin //创建管理员,必须
php xcat npmbuild //构建index
设置定时任务:
执行crontab -e命令, 添加以下四条
30 22 * php /www/wwwroot/demo.baiyue.one/xcat sendDiaryMail
0 0 * php -n /www/wwwroot/demo.baiyue.one/xcat dailyjob
/1 * php /www/wwwroot/demo.baiyue.one/xcat checkjob
/1 * php /www/wwwroot/demo.baiyue.one/xcat syncnode
然后按ECS键后输入:wq回车退出。