Will a self-signed certificate work behind an Apache reverse-proxy?

后端 未结 1 824
野趣味
野趣味 2021-01-18 08:20

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

相关标签:
1条回答
  • 2021-01-18 09:04

    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.

    0 讨论(0)
提交回复
热议问题