🚀傲星工具箱,一个在线工具箱
Go to file
2022-12-08 16:17:24 +08:00
.github/workflows chore: 🤖 指定Release action版本 2022-11-02 22:52:20 +08:00
app fix: 🐛 png resize mistake 2022-12-08 16:17:24 +08:00
config chore: 🤖 add plugin logo format 2022-12-08 14:56:50 +08:00
docker docs: ✏️ add docker usage 2022-12-08 10:14:37 +08:00
docs docs: ✏️ add docker usage 2022-12-08 10:14:37 +08:00
extend style: 💄 move the extension to extend 2022-12-08 14:55:23 +08:00
plugin chore: 🤖 add plugin logo format 2022-12-08 14:56:50 +08:00
public style: 💄 code supplement 2022-12-08 10:20:08 +08:00
route feat: 🎸 插件接口请求添加验证码验证支持 2022-10-07 16:13:18 +08:00
runtime feat: 🎸 更新SQL数据 2022-10-19 18:40:40 +08:00
vendor first commit 2021-12-22 23:12:13 +08:00
view style: 💄 code supplement 2022-12-08 10:20:08 +08:00
.env.example feat: 🎸 添加cachesessionredis的支持 2022-10-25 16:41:05 +08:00
.gitignore 完善插件安装logo设置问题 2021-12-25 16:41:17 +08:00
.gitmodules chore: 🤖 添加前端项目模块 2022-10-05 17:24:28 +08:00
composer.json chore: 🤖 add plugin logo format 2022-12-08 14:56:50 +08:00
install.sql feat: 🎸 更新SQL数据 2022-10-19 18:40:40 +08:00
LICENSE docs: ✏️ update license 2022-11-02 22:52:20 +08:00
README.md docs: ✏️ add docker usage 2022-12-08 10:14:37 +08:00
think first commit 2021-12-22 23:12:13 +08:00

toolbox

🎉 What's this

这是一款在线工具箱程序,您可以通过安装扩展增强她的功能
通过插件模板的功能,您也可以把她当做网页导航来使用~
觉得该项目不错的可以给个Star~

😺 演示地址

🍹 演示图

点击展开

🎑 说明

严禁用于非法用途

😺 文档

插件编写
Github Oauth 配置
Plugin Template 使用
Plugin Permission 使用 Docker

演示搭建视频

🎊 环境要求

  • PHP >= 7.2.5
  • MySQL >= 5.7
  • fileinfo扩展
  • 使用Redis缓存需安装Redis扩展
  • 去除禁用函数proc_openputenvshell_execproc_get_status( 必须是命令行的PHP版本你装了多个PHP版本命令行版本的PHP和你的网站配置的PHP可能不是同一个嫌麻烦可以下载full包)

🚠 部署

点击展开
  1. 下载Release代码

  2. 设置运行目录为public

  3. 关闭防跨站(open_basedir

  4. 设置伪静态

  5. 去除静态文件代理

    • 打开nginx配置
    • 删除图中选中的内容
  6. 安装依赖

    full包,已安装依赖,无需重复安装

    • 配置阿里镜像源
      composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
      
    • 升级compose
      composer self-update
      
    • 安装依赖
      composer install --no-dev
      
  7. 设置目录权限

    • 一般是默认允许的(如有无法上传、无法打开页面或其他未知问题可以设置一下目录权限)

    • Apache的所属组为www-data,那么就请修改wwwwww-data

      chmod -R 755 *
      chown -R www:www *
      
  8. 打开你的域名/install

🍰 伪静态

  • Nginx
location / {
	if (!-e $request_filename){
		rewrite  ^(.*)$  /index.php?s=$1  last;   break;
	}
}
  • Apache
<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>

😊 Donate

donate

🍓 鸣谢