From ef260ff27754330f2e16d507c1aa37e5a372178e Mon Sep 17 00:00:00 2001 From: Superuser Date: Sat, 16 May 2026 23:33:33 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=B7=BB=E5=8A=A0=E4=BB=93=E5=BA=93?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=96=87=E6=A1=A3=20REPOS.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- REPOS.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 REPOS.md diff --git a/REPOS.md b/REPOS.md new file mode 100644 index 0000000..1638504 --- /dev/null +++ b/REPOS.md @@ -0,0 +1,44 @@ +# 仓库信息(仅 aliyun-manager) + +> 摘录自 `D:\003_Project\004_Git\REPOS.md`。仅保留本仓库相关内容。 + +## 服务器 + +| 项 | 值 | +|----|-----| +| IP | `8.136.137.59` | +| SSH 密钥 | `D:\003_Project\小程序连接.pem` | +| SSH 连接 | `ssh -i "D:\003_Project\小程序连接.pem" root@8.136.137.59` | + +## Gitea + +| 项 | 值 | +|----|-----| +| 网址 | `https://git.dxz99wyr.cn` | +| 用户名 | `Superuser` | +| 密码 | `Admin@123` | +| API Token | `8b6bb6b10956104c1d0a8391d489a54156e7d84b` | +| SSH Git 端口 | `2222` | + +## aliyun-manager + +| 项 | 值 | +|----|-----| +| Git 地址 (SSH) | `ssh://git@8.136.137.59:2222/Superuser/aliyun-manager.git` | +| Git 地址 (HTTPS) | `https://git.dxz99wyr.cn/Superuser/aliyun-manager.git` | +| 本地路径 | `D:\003_Project\ALiYunManager` | +| 服务器路径 | `/opt/ALiYunManager` | +| 部署方式 | `git pull` → `docker compose exec -T nginx nginx -t && nginx -s reload` | +| 影响范围 | main-nginx 配置、所有服务的 nginx conf.d | +| Webhook Secret | `aliyun-manager-deploy-secret` | + +## 日常开发流程 + +```bash +cd D:\003_Project\ALiYunManager + +git add . +git commit -m "feat: 描述你的改动" +git -c http.sslVerify=false push +# ↑ Gitea 自签证书,需要关闭 SSL 验证 +```