Files
docker-configs/caddy/Caddyfile
Will Song 72ad0439f5 🚀 Major Docker services update and infrastructure reorganization
##  New Services Added
- **Navidrome**: Music streaming server with domain music.will123song.xyz
- **Jellyfin**: Media server with full hardware acceleration support
- **1Panel**: Server management panel with domain 1panel.will123song.xyz

## 🔧 Infrastructure Updates
- Updated Caddy reverse proxy configuration
- Added new domain mappings for all services
- Enhanced service discovery and networking

## 🗑️ Cleanup
- Removed gemini-balance service (deprecated)
- Removed simple-gemini-proxy service (no longer needed)
- Cleaned up related configurations

## 🛠️ Service Improvements
- Fixed AI claude-bot restart loop issue
- Updated SillyTavern configurations
- Added new character assets and workflows

## 📋 Service Status
- All new services deployed and operational
- Domain routing configured and tested
- Network connectivity verified

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-28 19:32:46 -05:00

54 lines
1.3 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
}
clove.will123song.xyz {
reverse_proxy clove:5201
}
music.will123song.xyz {
reverse_proxy navidrome:4533
}
1panel.will123song.xyz {
reverse_proxy 1panel:10086
}
ha.will123song.xyz, homeassistant.fossa-dinosaur.ts.net {
reverse_proxy 192.168.50.92: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\n- Gemini Balance: http://localhost:8001\n- Navidrome: http://localhost:4533"
}