Files
2026-05-16 23:33:33 +08:00

45 lines
1.2 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 仓库信息(仅 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 验证
```