反向代理 api 接口跨域,vue.config.js 里面代理了没问题
nginx 上 proxy_pass https://xxx 没反应,之前有 http_ssl_module 没安装的报错,我重新添加编译安装了 proxy_pass http://xxx 是可以的(目标网站接口有重定向,我的请求参数会丢失,所以想直接代理 https )
本身服务器域名没开 https,这 80 端口直接 proxy_pass https 会有问题么
在自己的vps上试了,发现是没问题的,看来要重装下 nginx 了,吐了
1
xuanbg 2020-11-12 15:21:14 +08:00
proxy_pass http://xxx,也就是服务本身不需要提供 https,让 Nginx 负责提供 https 。
|
2
Latin 2020-11-12 15:31:36 +08:00
重定向就直接 rewirte 吧,proxy_pass 不起作用的
|