how to configure apache server to talk to HTTPS backend server? how to configure apache server to talk to HTTPS backend server? apache apache

how to configure apache server to talk to HTTPS backend server?


Your server tells you exactly what you need : [Hint: SSLProxyEngine]

You need to add that directive to your VirtualHost before the Proxy directives :

SSLProxyEngine onProxyPass /primary/store https://localhost:9763/store/ProxyPassReverse /primary/store https://localhost:9763/store/

See the doc for more detail.


In my case, my server was configured to work only in https mode, and error occured when I try to access http mode. So changing http://my-service to https://my-service helped.