Files
biliLive-tools/docker/fullstack-Caddyfile
renmu123 ea205974a6 构建:全栈镜像 (#230)
支持 renmu1234/bililive-tools 单镜像部署
2025-11-07 14:17:27 +08:00

17 lines
301 B
Plaintext

:3000 {
# API 请求代理到后端
handle_path /api* {
reverse_proxy localhost:18010
}
# 静态文件服务
handle {
root * /app/public
file_server
encode gzip
# 处理前端路由
try_files {path} /index.html
}
}