Apache as Forward Proxy with certificate pass-trough

Discussion in 'Server Operation' started by mihaimyh, Feb 20, 2019.

  1. mihaimyh

    mihaimyh New Member

    I have a certificate on a token that I need to use to connect via an apache forward proxy to a website.

    Currently the connection is getting closed somewhere, I believe due to the fact that the proxy is not passing my certificate from the token to that website.

    Is there any specific configuration that I should make to the Apache to allow this?

    Currently I got:

    Code:
    <IfModule mod_proxy.c>
    ProxyRequests On
    SSLProxyEngine on
    AllowCONNECT 80 443
    <Proxy *>
    Order deny,allow
    Deny from all
    Allow from my_Ip_here
    </Proxy>
    </IfModule>
     

Share This Page