Certbot: Difference between revisions
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
Retrieve the certbot-auto script, make it executable, copy it somewhere in the default path and execute it: | Retrieve the certbot-auto script, make it executable, copy it somewhere in the default path and execute it: | ||
<pre> | <pre> | ||
apt-get -y install python-pip | |||
wget https://dl.eff.org/certbot-auto | wget https://dl.eff.org/certbot-auto | ||
chmod a+x certbot-auto | chmod a+x certbot-auto |
Revision as of 06:39, 8 February 2018
Certbot sets up a free Lets Encrypt certificate for your website. The following instructions are for Certbot which is the tool supplied by the EFF (the creators of Lets Encrypt) to help with setup. These notes are for a simple single site with defaults.
Ensure your server has a DNS record exists for the domain name(s) you will be using.
NB LetsEncrypt do not support wildcard certificates, but given it's no additional cost (and easy) to generate certs for different domains, or a cert will multiple domain names attached, wildcards are not a big issue.
Retrieve the certbot-auto script, make it executable, copy it somewhere in the default path and execute it:
apt-get -y install python-pip wget https://dl.eff.org/certbot-auto chmod a+x certbot-auto cp certbot-auto /usr/bin/
#Create an certificate for all domains certbot-auto --apache #Create an certificate for a specific domain certbot-auto --apache --cert-name example.com -d 1.example.com,2.example.com
Follow the prompts displayed, making sure you enter the domain name(s) correctly. Given the current environment when asked about whether you want to have HTTP available it's recommended to take the "secure" option (HTTPS only).
If the certificate generates successfully, next configure auto-renew. Test this first by running
certbot-auto renew --dry-run
and if successful add auto-renew to cron.daily
sudo vim /etc/cron.daily/autorenew #!/bin/sh ##script to run Lets Encrypt certificate renewal check/update tool certbot-auto renew --quiet --no-self-upgrade
and make it executable
sudo chmod +x /etc/cron.daily/autorenew
You should occasionally run certbot-auto manually to let it upgrade, but the auto command will keep certificates updated in between.
Ubuntu 16.04
Certbot is packaged for 16.04, so apt-get the following package:
$ sudo apt-get install python-letsencrypt-apache
It also has an Apache plugin that automates obtaining and installing certificates:
letsencrypt --apache
You can also add domains manually, useful for adding aliases to a single certificate e.g. example.com & www.example.com
letsencrypt --apache --domains example.com,www.example.com
<code
Let's Encrypt certificates last for 90 days, so it's highly advisable to renew them automatically! You can test automatic renewal for your certificates by running this command:
letsencrypt renew --dry-run --agree-tos
WARNING
There's a bug in the version of Certbot on Ubuntu Xenial which may show a warning saying 'Registering without email!' even if you have previously given an email to Certbot. Don't worry if this happens, it will not effect your renewal. If that appears to be working correctly, you can arrange for automatic renewal by adding a cron or systemd job which runs the following:
letsencrypt renew