How can I use Apache as a reverse proxy for https?
You could install stunnel (and probably open-sni as well) on the same machine, but then your configuration would be as simple as running the following: ProxyPass /. ProxyPassReverse /. That would require no changes to httpd at all. To set up both of these on the same box, you can use a separate virtual host file for each which just makes a couple tweaks to httpd's default settings. If you are doing this on Windows, you might want to look into IIS for the same purpose instead.
Of course if you're setting up Stunnel, you'll need to add some configuration to it to point back to httpd (the default is 127.0.1).
Related Answers
What are the two types of proxies?
You can use a reverse proxy for multiple reasons, but mostly it is us...
Does Apache support reverse proxy?
I have a.war application which is deployed in the Tomcat server. br...
Why is it called a reverse proxy?
What is the difference between a reverse proxy an...