Hi,
I have an apache proxy that map some services.
Some are hosted on the same machine under tomcat / https, others are on other machines. I would like to create a new server to host only apache and use as reverse proxy for these services. I would like to use a new clean VM with Apache and “letsencrypt / certbot” to certify services. What is best way to proceed? Can I install on this machine certbot apache and use it to certify all services mapped? As usual routes in this case the verification? Thanks in advance .
my actual apache conf.
<IfModule mod_ssl.c>
<VirtualHost *:443>
ProxyRequests off
ProxyPreserveHost on
SSLProxyEngine on
...
ServerName XYZ
<Proxy balancer://xyz>
# WebHead1
BalancerMember https://AAA.BBB.CCC.DDD:8443
# Security "technically we aren't blocking
# anyone but this the place to make those
# chages
Order Deny,Allow
Deny from none
Allow from all
# Load Balancer Settings
# We will be configuring a simple Round
# Robin style load balancer. This means
# that all webheads take an equal share of
# of the load.
ProxySet lbmethod=byrequests
</Proxy>
... etc