L.S.

Is it possible with HAProxy, to have a frontend which binds on HTTP that
refers to a backend that connects to an HTTPS endpoint using Client
Certificate Authentication while reaching it via a Squid forwarding proxy?

I have a working Apache HTTP server config which I want to replace because
Apache doesn't support OpenTracing.

Apache config:

ProxyRemote "*" "http://squid-internet:3128";
<VirtualHost *:80>
  ServerName onloading-proxy-internet-endpoint
  ..
  SSLProxyMachineCertificateFile keypair-internet.pem
  SSLProxyMachineCertificateChainFile chain-internet.pem
  ProxyPass / https://internet-endpoint
  ProxyPassReverse / https://internet-endpoint
</VirtualHost>

Regards

Ferry

Reply via email to