The goal of this article is to provide you the steps needed to generate a trusted SSL certificate using Let's Encrypt.
...
At the end of the process, your certificate, private key, and LE chain will be installed to /etc/letsencrypt/archive/<YOUR_DOMAIN> directory.
Install the certificate
Copy the generated private key and certificate to the default directory (used by Asterisk and Nginx):
...
At the end of the process, your certificate, private key, and LE chain will be installed to /etc/letsencrypt/archivelive/<YOUR_DOMAIN> directory.
Install the certificate
Copy the generated private key and certificate to the default directory (used by Asterisk and Nginx):
Code Block | ||
---|---|---|
| ||
mvcp /etc/letsencrypt/archivelive/<YOUR_DOMAIN>/privkey1.pem /etc/ssl/private/motion.key mvcp /etc/letsencrypt/archivelive/<YOUR_DOMAIN>/fullchain1.pem /etc/ssl/certs/motion.crt |
...