so currently we are running a sort of "partial DNS round robin" setup.
We use 3 different NGINX web servers with a bunch of domains, however 6 of those domains are setup so they point to the IP of all 3 web servers.
So my first issue was making Certbot work when creating certificates in round robin (since ACME challenge could hit a web server that didn't host the challenge file, which resulted in failure). I've solved that by creating redirects for ACME challenges to a single web server which acts as an "authenticator".
Now my question is, since now there are 2 separate certificate files in play... One for the domains that are not in the DNS round robin (certs that each webserver creates for the domains hosted on it) and then the cert file that "authenticator server" creates, which includes all of the round robin domains... What would be simplest solution to distribute these certs to other web servers?
Could I just copy the round robin cert to the other web servers and manually merge it with the existing ones? Say something like copy the contents of "fullchain.pem" and "privkey.pem" into existing ones, pretty much merging them?