0.1.6 接口问题
接口异常 设置伪静态 location /uploads {
设置资源存储路径地址
root /www/wwwroot/kuaidi.ufwsss.cn/digitalcommunity/wwwroot;
# linux下对应 /home/website
autoindex on;
}
location / {
root /www/wwwroot/kuaidi.ufwsss.cn/digitalcommunity/wwwroot;
index index.html;
# 避免出现404
try_files $uri $uri/ /index.html;
}
#api转发
location /prod-api/business/AdminUpdateVer/upgrade {
proxy_pass http://localhost:11104/business/AdminUpdateVer/upgrade;
}
location /prod-api/ {
proxy_pass http://localhost:10104/;
}
location /msgHub/ {
proxy_pass http://localhost:10104/msgHub/;
}