Nginx - vue项目部署

2020-02-13  本文已影响0人  木头就是我呀

本次实现微信分享定位的时候遇到了一个问题:

1.部署在nginx非根目录下的项目,可能会找不到js/css

配置publicPath

2. nginx 配置文件

    location /app {
        alias   C:\myApps;
        allow all;
        autoindex on;
    }
    location /api {
        proxy_pass http://www.yangxc.cn:7001/test-api;
    }

含义:对所有的请求路径包含/api的,代理到http://www.yangxc.cn:7001/test-api上

上一篇下一篇

猜你喜欢

热点阅读