mirror of
https://github.com/renmu123/biliLive-tools.git
synced 2026-09-03 07:18:33 +08:00
17 lines
301 B
Plaintext
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
|
|
}
|
|
}
|