Files
docker-configs/router/caddy/Caddyfile
Will Song 9728a8054f 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>
2025-07-16 21:29:08 -05:00

42 lines
1.0 KiB
Caddyfile

# 使用容器名的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"
}