为多个CMS站点提供安全、可靠的版本更新服务
获取最新版本信息,支持 action=latest 和 action=list 参数
安全下载更新文件,需要 file 和 version 参数
获取服务器统计信息和健康检查,支持 action=stats 和 action=health
更新日志管理,支持 action=add(POST)和 action=list(GET)
/banben.jiulinggongjiang.com/
├── api/ # API接口目录
│ ├── version.php # 版本信息接口
│ ├── download.php # 文件下载接口
│ ├── info.php # 服务器信息接口
│ └── log.php # 更新日志接口
├── updates/ # 更新文件存储(按版本号分类)
│ ├── v1.0.0/ # 历史版本文件
│ └── vX.X.X/ # 最新版本文件
├── client/ # 客户端SDK
│ └── UpdateChecker.php
├── tools/ # 工具脚本
│ ├── package.php # 打包脚本
│ └── init_db.php # 数据库初始化
├── config.php # 服务器配置
├── install.sql # 数据库安装脚本
└── index.php # 首页状态展示