nginx(https)代理问题

2022/3/11 7:14:58

本文主要是介绍nginx(https)代理问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

https://blog.csdn.net/wangzs1234/article/details/108096052

问题描述:

nginx代理tomcat服务器,访问Nginx用Https,代理用http,但是tomcat重定向的页面无法访问

流程:

问题描述:用户–https–>Nginx–http–>Tomcat

错误信息:

Mixed Content: The page at ‘https://…/#’ was loaded over HTTPS,
but requested an insecure form action ‘http://…//’. This request
has been blocked; the content must be served over HTTPS.

解决:
这是因为tomcat重定向的时候给你变成http了。
加个 proxy_redirect

proxy_pass http://127.0.0.1:8080/;
proxy_redirect ~^http://([^:]+)(:\d+)?(.*)$ https://$1$3;

 



这篇关于nginx(https)代理问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程