Error during SSL Handshake with remote server

前端 未结 3 692
迷失自我
迷失自我 2021-01-29 19:18

I have Apache2 (listening on 443) and a web app running on Tomcat7 (listening on 8443) on Ubuntu.

I set apache2 as reverse proxy s

3条回答
  •  北海茫月
    2021-01-29 19:47

    The comment by MK pointed me in the right direction.

    In the case of Apache 2.4 and up, there are different defaults and a new directive.

    I am running Apache 2.4.6, and I had to add the following directives to get it working:

    SSLProxyEngine on
    SSLProxyVerify none 
    SSLProxyCheckPeerCN off
    SSLProxyCheckPeerName off
    SSLProxyCheckPeerExpire off
    

提交回复
热议问题