I have three servers requiring SSL certs under one router: Synology NAS, Windows Server and a Raspberry Pi. AFAIK Let’s Encrypt only works on port 80 and 443, does that mean I am can only assign one of the three servers to Let’s Encrypt’s auto renewal?
They are web interfaces. I have already secured my NAS’s management interface with SSL, but would
like to secure my Pi’s web interfaces as well. They have their own domain names and I can visit the unsecured web pages using custom ports from outside the LAN.
To expand on this, you can’t directly get certificates for the individual devices using custom ports without some additional configuration.
The easiest approach if you have an API-based method to update the DNS zone for your domain is the DNS-01 challenge that @ahaw021 mentions. Then each device can run a client that can make the requested DNS changes that the certificate authority asks for, and then get its own certificate that way.
If not, there is a more complex approach where the certificate authority is willing to follow HTTP redirects (including to a different port number) from an initial connection on port 80, when using the HTTP-01 challenge method. (This challenge method is implemented in Certbot by --webroot, and optionally by --standalone when you don’t have or don’t want to use an existing web server to receive the challenge connections.)
So if you have one of the machines that receives web connections on port 80 of your shared IP address, if this machine can be configured to look at the host name in the HTTP request and then generate a 301 redirect with the appropriate host name and port number, the certificate authority will follow those redirects and then connect on the other port, allowing it to complete the validation.