apache转发代理添加客户端证书以请求

时间:2019-11-26 09:47:12

标签: apache ssl proxy certificate forward

我的目标是将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>

0 个答案:

没有答案