I received an email from my DDNS provider, no-IP, that they are now offering a free TrustCor Standard DV SSL certificate. Admittedly, I’m a bit of a noob when it comes to these things and their documentation https://www.noip.com/support/knowledgebase/configure-trustcor-standard-dv-ssl/?utm_source=email&utm_medium=notice&utm_campaign=2022-ssl-announcement-free doesn’t have a guide for installing this on a Synology NAS. Can someone help guide me through this process? Thanks!
Synology uses Apache Openssl. You can try and follow the instructions here: https://www.noip.com/support/knowledgebase/apache-openssl/
However if like me your noip domain is pointed to another domain you own managed by a different provider then the free cert won’t work. You would need to buy a premium ssl cert from noip to get it to work. If you are just using the noip generated domain then the above instructions should help.
You need to have SSH access to your NAS and the command needs to be the following to generate the correct key length and sha256 algorithim:
>openssl req -new -nodes -newkey rsa:2048 -keyout myserver.key -out server.csr -sha256
hope this helps
I’ll give it a shot this weekend. Thanks!