Add Claude API router and AdWireGuard projects

- Implement Claude API smart router with automatic failover
- Support 4 providers: Claude Pro, DeepSeek, Kimi, Claude API
- Update models: DeepSeek to deepseek-reasoner, Kimi to kimi-k2
- Add AdWireGuard: WireGuard VPN + AdGuard DNS filtering
- Consolidate tokens into single tokens.txt file
- Add mDNS reflector to Home Assistant setup

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Will Song
2025-07-14 20:30:56 -05:00
parent 261ac9d563
commit 9728a8054f
53 changed files with 2285 additions and 0 deletions

42
router/caddy/Caddyfile Normal file
View File

@@ -0,0 +1,42 @@
# 使用容器名的Caddy配置
jellyfin.will123song.xyz {
reverse_proxy jellyfin:8096
}
portainer.will123song.xyz {
reverse_proxy portainer:9000
}
git.will123song.xyz {
reverse_proxy gitea:3000
}
adguard.will123song.xyz {
reverse_proxy adguardhome:3000
}
bt.will123song.xyz {
reverse_proxy qbittorrent:8080
}
vault.will123song.xyz {
reverse_proxy vaultwarden:80
}
silly.will123song.xyz {
reverse_proxy sillytavern:8000
}
ha.will123song.xyz, homeassistant.fossa-dinosaur.ts.net {
reverse_proxy homeassistant:8123
}
# 本地测试端口
:8090 {
reverse_proxy jellyfin:8096
}
# 默认站点
will123song.xyz, www.will123song.xyz {
respond "Welcome to Will's Server! 🚀\n\nServices Available:\n- Jellyfin: http://localhost:8096\n- Portainer: http://localhost:9000\n- qBittorrent: http://localhost:18080\n- Vaultwarden: http://localhost:8081\n- AdGuard: http://localhost:3000\n- Gitea: http://localhost:13000\n- SillyTavern: http://localhost:8000\n- Home Assistant: http://localhost:8123"
}