nginx解决跨域的配置问题

vue项目 想用nginx解决跨域问题

下面问题我知道原因了,现在遇到了新问题,nginx监听8080端口,好把locahost:8080/apis转成别的地址,但是node也在监听8080冲突了怎么办

配置:

server {    listen       8080;    server_name  localhost;    #charset koi8-r;

    #access_log  logs/host.access.log  main;
    
    location /apis{        proxy_pass http://baidu.com;
    }
}

这样配置以后,访问http://localhost:8080/apis会跳到http://localhost:8080/apis#/index 而不是baidu.com怎么办?


一只斗牛犬
浏览 1886回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Node.js