ngnix.conf文件配置前后端联调地址
示例场景
vue3项目调用后台接口,前端项目启动后访问地址是http://localhost:5173,
接口请求地址是http://xxx:9000/test/...,
提示跨域。
ngnix.conf 配置如下代码
server {listen 8000;server_name: localhost;location / {proxy_pass http://localhost:5173;}location /test/ {proxy_pass http://xxx:9000/test/;}
}
修改完ngnix.conf文件后,关闭任务管理器中的所有的ngnix.exe进程(有时候会有很多,关不掉的话从下往上关),重启ngnix
然后在浏览器访问localhost:8000。