When your Synology won’t (or more likely can’t because you blocked port 80 after getting the first time) automatically renew its Let’s Encrypt SSL certificate you can manually trigger the renewal yourself.
If you’re using Windows 10, you could also use the new built in SSH client which seems to work fine.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh user@synology.local | |
sudo -i | |
# Method 1 | |
/usr/syno/sbin/syno-letsencrypt renew-all | |
# Method 2 – Verbose | |
/usr/syno/sbin/syno-letsencrypt renew-all -vv |