LetsEncrypt: Difference between revisions
From charlesreid1
(Created page with "Let's Encrypt: https://letsencrypt.org/ The process of getting a new lets encrypt certificate is covered in the process of deploying a new node: Deployment/New Node Chec...") |
No edit summary |
||
| (6 intermediate revisions by the same user not shown) | |||
| Line 6: | Line 6: | ||
[[Deployment/New Node Checklist]] | [[Deployment/New Node Checklist]] | ||
[[Deployment/New Node Checklist#Lets Encrypt]] | |||
here it is again. | |||
<pre> | |||
add-apt-repository ppa:certbot/certbot | |||
apt-get update | |||
apt-get -y install certbot | |||
sudo certbot certonly --webroot -w /var/www/html -d reidmachine.party -d www.reidmachine.party | |||
</pre> | |||
alternatively, you can add two domains, one after the other, and it'll stack them all into the same file: | |||
<pre> | |||
$ sudo certbot certonly --webroot -w /var/www/html -d reidmachine.party | |||
$ sudo certbot certonly --webroot -w /var/www/html -d www.reidmachine.party | |||
</pre> | |||
Lets Encrypt (actually, certbot) puts everything into <code>/etc/letsencrypt/keys/0001_key-certbot.pem</code> | |||
=Flags= | |||
[[Category:SSL]] | |||
[[Category:Certificates]] | |||
[[Category:Security]] | |||
[[Category:LetsEncrypt]] | |||
[[Category:Encryption]] | |||
[[Category:Deployment]] | |||
{{CertificatesFlag}} | |||
{{SSLFlag}} | |||
{{EncryptionFlag}} | |||
Latest revision as of 09:18, 28 October 2017
Let's Encrypt:
The process of getting a new lets encrypt certificate is covered in the process of deploying a new node:
Deployment/New Node Checklist#Lets Encrypt
here it is again.
add-apt-repository ppa:certbot/certbot apt-get update apt-get -y install certbot sudo certbot certonly --webroot -w /var/www/html -d reidmachine.party -d www.reidmachine.party
alternatively, you can add two domains, one after the other, and it'll stack them all into the same file:
$ sudo certbot certonly --webroot -w /var/www/html -d reidmachine.party $ sudo certbot certonly --webroot -w /var/www/html -d www.reidmachine.party
Lets Encrypt (actually, certbot) puts everything into /etc/letsencrypt/keys/0001_key-certbot.pem
Flags
Template:CertificatesFlag Template:SSLFlag Template:EncryptionFlag