nginx 反向代理了
location / {
proxy_pass http:127.0.0.1:8080;
}
location /test {
root html;
index index.html;
}
而现在 html 目录下放的 是前端项目。
反代的是后端接口。
现在只能通过 http://127.0.0.1/test 访问 前端项目。
需求:
如果直接通过 http://127.0.0.1 访问前端项目。
因为有太多的前端项目,反向代理那不能动。。