vue的和nginx的反向代理
vue的请求规则proxyTable: {'/api':{// 拦截请求规则target:'http://localhost:9999',changeOrigin:true,pathRewrite:{'/api':''}}}nginx...
·
vue的请求规则
proxyTable: {
'/api':{
// 拦截请求规则
target:'http://localhost:9999',
changeOrigin:true,
pathRewrite:{
'/api':''
}
}
}
nginx的请求规则
location /api {
proxy_pass http://localhost:9999/;
}
更多推荐
已为社区贡献3条内容
所有评论(0)