我的目标是将apache服务器设置为http / https代理,并向所有请求添加客户端证书。
我当前的配置无法将证书添加到请求中。
nginx错误:
*1 client sent no required SSL certificate while reading client request headers,
httpd.config:
<VirtualHost *:80>
ProxyRequests On
ProxyVia Full
AllowCONNECT 443
SSLProxyEngine On
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
SSLProxyMachineCertificateFile "/certs/client.pem"
SSLProxyCACertificateFile "/certs/ca.pem"
<Proxy "*:80">
Require all granted
</Proxy>
</VirtualHost>