利用Nginx处理Vue开发环境的跨域的方法
时间:2021-07-05 09:22:48|栏目:Nginx|点击: 次
1. 需求
本地测试域名与线上域名相同,以便正确传递 Cookie 和进行 SSO 测试。
注:由于 SSO 登录后,相关 Cookie 被加在四级域名上,因而需要做到本地测试域名和线上接口域名相同。
2. 方案
配置 Host 文件使线上域名指向 Localhost:
127.0.0.1 product.xxx.xxx.com
配置 Nginx 进行对应转发:
server { listen 80; listen [::]:80; server_name ${product.xxx.xxx.com}; location /api { proxy_pass https://${ip.ip.ip.ip}; proxy_set_header Host $host; } location / { proxy_pass http://localhost:8080; proxy_set_header Host $host; } }
配置 vue.config.js 以免出现 Invalid Host header 报错:
{ devServer: { disableHostCheck: true } }
栏 目:Nginx
本文地址:http://www.codeinn.net/misctech/153016.html