We want to use Apache as our reverse proxy to a collection of app servers. We plan to se a CA-signed SSL certificate on the Apache instance but wanted to use self-signed cer
If you have a large collection of app servers, it would probably make more sense to have your own internal CA, instead of having to manage each self-signed certificate one by one.
If you want to the connections between an Apache Httpd reverse proxy and its worker nodes to use HTTPS, you can configure the certificates trusted by Apache Httpd using the SSLProxy*
directives of mod_ssl
(as documented in the introduction of the mod_proxy
documentation), in particular SSLProxyCACertificateFile
.
You'll need to use mod_proxy_http
for this, since AJP connections are not made over SSL/TLS.