【发布时间】:2018-08-04 10:49:33
【问题描述】:
我正在使用代理传递将 http 重定向到 https 后端服务器(tomcat)
我得到的错误是:与远程服务器进行 SSL 握手期间出错
我的配置:
<VirtualHost *:80>
ServerName mypersonal.server.com
ProxyRequests Off
SSLProxyEngine On
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
ProxyPass /publisher https://localhost:9443/publisher
ProxyPassReverse /publisher https://localhost:9443/publisher
</VirtualHost>
我正试图找到一种方法来克服 SSL 的验证,但以下命令在我的配置中显示为灰色
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
我使用服务器版本:Apache/2.4.6 (CentOS)
感谢您的帮助
【问题讨论】:
标签: apache reverse-proxy proxypass