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;
}
}
關(guān)鍵點描述:
1黍少、根上的配置寡夹,需要使用try_files
2、靜態(tài)目錄的配置厂置,一是要直接配置目錄名稱菩掏;二是配置alias指向具體的靜態(tài)目錄。