这个工具箱 建议使用香港服务器或者国外服务器安装,因为要用到 github.com 账号登陆来管理后台
国内服务器也可以安装,但是后台登陆可能会延迟或者失败,插件获取也可能失败,毕竟需要用到 github.com 来通讯
具体看搭建教程
演示搭建视频 https://www.bilibili.com/video/BV12g411z7KL
环境要求
PHP >= 7.2.5
MySQL >= 5.7
fileinfo扩展
使用Redis缓存需安装Redis扩展
去除PHP禁用函数proc_open、putenv、shell_exec、proc_get_status
部署
下载代码
设置运行目录为public
关闭防跨站(open_basedir)
设置伪静态
去除静态文件代理
打开nginx配置
删除图中选中的内容
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] </IfModule>
打开 你的域名/install 进行安装
官方演示 https://tool.aoaostar.com/
官方开源地址 https://gitee.com/klmahuaw/toolbox#https://gitee.com/link?target=https%3A%2F%2Ftool.aoaostar.com
© 版权声明
THE END
暂无评论内容