将vue的product代码部署为根,其他的静态目录如何配置?

server {
listen 80;
server_name abc.com;
location ^~ /api/ {
proxy_pass http://127.0.0.1:5000;
}
}
location / {
root /root/desk_top/object_manage/dist/;
index index.html;
try_files uri/ /index.html;
}
location /welcome2 {
alias /root/desk_top/ruanjianguanli/;
index index.html;
}
}

关键点描述:
1、根上的配置,需要使用try_files
2、静态目录的配置,一是要直接配置目录名称;二是配置alias指向具体的静态目录。

你可能感兴趣的:(将vue的product代码部署为根,其他的静态目录如何配置?)