nginx 同时代理资源文件夹和 api 服务

在同一个端口同时支持代理页面静态资源,资源文件和后端 api 接口

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
server {
listen 7001;
server_name localhost:7001;
# 前端页面
location / {
root /xxx/dist;
index index.html;
try_files $uri /index.html;
}
# api 服务,服务的前缀都是 api
location /api {
proxy_pass http://localhost:1234/api;
}

# 静态资源,访问的其实是 /var/serverSource/upload,后端保存文件也是这个路径
location /upload {
root /var/serverSource;
}
}

nginx 同时代理资源文件夹和 api 服务
https://bubao.github.io/posts/dbc638b7.html
作者
一念
发布于
2021年11月10日
许可协议