Files
gitlab-instance-0a899031_do…/live-platform/config/templates/Caddyfile.sample
2026-03-28 13:27:53 -05:00

14 lines
373 B
Caddyfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 将本文件复制到 /opt/live/templates/Caddyfile 并按实际路径修改
# 目标http://live.local → 静态控制台 + /api/* → FastAPI
{$LIVE_DOMAIN:live.local} {
encode gzip
# 静态Next export 由 web.py 同端口托管时可改为 reverse_proxy
handle_path /api/* {
reverse_proxy 127.0.0.1:8001
}
handle {
reverse_proxy 127.0.0.1:8001
}
}