nginx的server如何写?

我的vue端口是8090后台端口是8080最开始是在vue的proxyTable中配置
'/api':{
target:'http://localhost:8080',
changeOrigin:true,
pathRewrite:{
'^/api':'http://localhost:8080'//路径重写
}
},
接口如:/api/system/troubles/login本地可以正常跨域现在想用nginx实现
server{
listen1111;
server_namelocalhost;
location^~/api/{
rewrite^/api/(.*)/$1break;
proxy_passhttp://localhost:8080/;
}
}
listen写8090会报端口占用,随便写个1111无法跨域报404,还是location错误?应该怎么写
慕侠2389804
浏览 803回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript