server {
listen 80;
# 新增首页
location / {
alias /zh-helper/;
try_files $uri $uri/ /index.html last;
}
# 后台项目
location /zh-admin {
alias /zh-helper/zhanheng-funding-helper-admin/dist/;
try_files $uri $uri/ /index.html last;
}
# 后台项目
location /example{
# proxy_pass
http://zhanheng-funding-helper.oss-cn-shenzhen.aliyuncs.com;
# proxy_hide_header Content-Disposition;
alias /zh-helper/zhanheng-funding-helper/dist/;
try_files $uri $uri/ /index.html;
}