vue配置:
proxyTable: {
'/jinjiapi': {//使用"/api"來代替"http://v.juhe.cn/toutiao/index"
? ? target:'https://waitclopeo.com', //源地址
// target: 'http://127.0.0.1:30000', //源地址
? ? changeOrigin:true, //改變源
? ? pathRewrite: {
'^/jinjiapi':'' //路徑重寫
? ? }
}
},
nginx的你這個端口的域名的配置。如果有多個箱熬,就在你當前需要轉發(fā)的域名server里配置类垦,且要在后面加一個/
server {
? ? ? ? listen 80;
? ? ? ? server_name? jinji.******.com;
? ? ? ? ? location /
? ? ? ? ? ? ? {
? ? ? ? ? proxy_pass http://127.0.0.1:3123;
? ? ? ? ? ? ? }
location /jinjiapi/ {
? ? proxy_pass http://127.0.0.1:30000/; #代理的地址
? ? }
? ? ? ? }
配置錯了會出現請求options等一些亂七八糟的問題