This shows you the differences between two versions of the page.
| — |
howtos:certbot [d/m/Y H:i] (current) domingo created |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Setup certbot ====== | ||
| + | |||
| + | <code> | ||
| + | sudo apt-get update | ||
| + | sudo apt-get install software-properties-common | ||
| + | sudo add-apt-repository ppa:certbot/certbot | ||
| + | sudo apt-get update | ||
| + | sudo apt-get install python-certbot-apache | ||
| + | </code> | ||
| + | |||
| + | ====== Issue Certificate ====== | ||
| + | |||
| + | <code> | ||
| + | sudo certbot --apache | ||
| + | </code> | ||
| + | |||
| + | ====== Location of Certificates ====== | ||
| + | |||
| + | <file> | ||
| + | /etc/letsencrypt/live/<domain>/fullchain.pem | ||
| + | /etc/letsencrypt/live/<domain>/privkey.pem | ||
| + | </file> | ||