wiki:obtain_letsencrypt_certificate_domain_multiple_ips
This is an old revision of the document!
Table of Contents
Obtain letsencrypt certificate for domain with multiple IPs
This is a workaround when you have a single domain example.com pointing to 2 or more servers i.e. IPs.
You need to redirect the letsencrypt validation to a different subdomain which points to a single server IP. Example in nginx:
server { server_name example.com; listen 80; # when one domain is pointing to multiple IPs we need to redirect to domain # with single IP since LE can't handle multiple IPs correctly location /.well-known { return 301 http://letsencrypt.example.com$request_uri; } } server { server_name letsencrypt.example.com; listen 80; location /.well-known { alias /var/www/le/.well-known; } }
The DNS for letsencrypt.example.com should point to all IPs e.g.
letsencrypt.example.com 86400 A 10.10.10.10 letsencrypt.example.com 86400 A 10.10.10.20
Now when fetching the certificates for example.com, LE should follow the redirect to letsencrypt.example.com.
Then you can setup something like rsync to copy the certs from the primary server to other servers if there is something like DNS load balancing.
Tested on
- nginx/1.23.3
See also
References
wiki/obtain_letsencrypt_certificate_domain_multiple_ips.1678715955.txt.gz · Last modified: 2023/03/13 13:59 by antisa