Sublink / Caddyfile
BirkhoffLee's picture
feat: 配置好了代理转发架构
4c031a8 unverified
raw
history blame contribute delete
201 Bytes
:7860 {
# /sub* 转发到 subconverter
handle /sub* {
reverse_proxy localhost:25500
}
# 其余流量转发到 FastAPI
handle {
reverse_proxy localhost:8000
}
}