'Apache2 forward proxy: connect to proxy using HTTPS

I have setup forward proxy using apache2:

<VirtualHost *:1080>
    ServerName proxy.domain.com

    LogLevel info
    ErrorLog ${APACHE_LOG_DIR}/proxy_error.log
    CustomLog ${APACHE_LOG_DIR}/proxy_access.log combined

    ProxyRequests On
    ProxyVia On
    AllowCONNECT 443
    SSLProxyEngine on
    <Proxy *>
       Require ip xxx.xxx.xxx.xxx
    </Proxy>
</VirtualHost>

It works fine. I can connect to proxy using HTTP protocol and I can browse secure sites.

me => HTTP => proxy => HTTPS => target

Is it possible to setup apache2 to connect to as client using HTTPS?

me => HTTPS => proxy => HTTPS => target


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source