once again! Thanks for your fast response, really!
Yes, i rename it to default.conf. The error.log contains some hints:
[Sat Jul 02 06:53:53.573896 2016] [ssl:warn] [pid 3651] AH01909: 127.0.1.1:12322:0 server certificate does NOT include an ID which matches the server name
[Sat Jul 02 07:01:54.807560 2016] [proxy:error] [pid 4186] (502)Unknown error 502: AH01084: pass request body failed to 192.168.2.12:443 (192.168.2.12)
[Sat Jul 02 07:01:54.807621 2016] [proxy:error] [pid 4186] AH00898: Error during SSL Handshake with remote server returned by /
[Sat Jul 02 07:01:54.807627 2016] [proxy_http:error] [pid 4186] AH01097: pass request body failed to 192.168.2.12:443 (192.168.2.12)
The problem is the verification of the SSL certificate. The apache server don't trust my certificate? I order this from my provider (its not self signed), i dont know whats wrong with my SSL certificate?
A quick solution is to disable SSL verification by adding this lines in the SSLProxyEngine section:
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
SSL certification
Hi Jeremy,
once again! Thanks for your fast response, really!
Yes, i rename it to default.conf. The error.log contains some hints:
The problem is the verification of the SSL certificate. The apache server don't trust my certificate? I order this from my provider (its not self signed), i dont know whats wrong with my SSL certificate?
A quick solution is to disable SSL verification by adding this lines in the SSLProxyEngine section:
But I'am not sure if this a secure solution?