nginx.config中:
server {
listen 80;
server_name 127.0.0.1;
location / {
proxy_pass http://127.0.0.1:3000;
}
location ~/yunwei/ {
proxy_pass http://47.9.18.7:7015; //接口地址
}
ajax中:
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://127.0.0.1:3000/yunwei/user/getWaitingConfUsers', true);
本地webstorm打开项目的地址是 localhost:63342/
试了很久都没成功,到底该如何配置
你这
nginx
服务的端口配的是80
。