File size: 201 Bytes
4c031a8
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
:7860 {
    # /sub* 转发到 subconverter
    handle /sub* {
        reverse_proxy localhost:25500
    }

    # 其余流量转发到 FastAPI
    handle {
        reverse_proxy localhost:8000
    }
}