v1.1.0: Alpine 轻量级 Docker 开发环境 + 敏感凭证清理

This commit is contained in:
lxy
2026-07-27 13:59:18 +08:00
parent feb76081a0
commit ccca0fa62b
51 changed files with 6125 additions and 993 deletions
+25
View File
@@ -0,0 +1,25 @@
# ssh-proxy 连接配置模板
# 用法:复制为 ssh-proxy.toml 后填入真实值(ssh-proxy.toml 已在 .gitignore,不入库)
# 注意:server name 用短名(如 byr_pro),作为内部连接标识符
[server]
port = 3308
host = "0.0.0.0"
[pool]
idle_timeout_secs = 300
check_interval_secs = 60
[[servers]]
name = "flux_dev"
host = "<TEST_SERVER_HOST>"
port = 22
user = "root"
private_key = "/root/.ssh/id_ed25519"
[[servers]]
name = "byr_pro"
host = "<PROD_SERVER_HOST>"
port = 22
user = "root"
private_key = "/root/.ssh/id_ed25519"