How to configure Apache as reverse proxy to https backend server

The normal reverse proxy configuration for Apache server will fail if the backend server is configured with SSL.

In-order to overcome this problem we need to use the following reverse proxy configuration.

SSLProxyEngine on
ProxyPass / https://backend-host:port/
ProxyPassReverse / https://backend-host:port/

Here the backend-host and port should be replaced by the corresponding values.

That's all…

Leave a Reply