It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In RegisterIt looks like you're new here. If you want to get involved, click one of these buttons!
Howdy, Stranger!
It looks like you've been lurking for a while.
If you register, we also will remember what you have read and notify you about new comments. You will also be able to participate in discussions.
So if you'd like to get involved, register for an account, it'll only take you a minute!
We need to add a repository, for this first of all install the software-properties-common package. For our Ubuntu version, I also had to install the python-software-properties package:
apt-get install software-properties-common python-software-propertiesThen add the PPA, update your sources, and upgrade your the package:
add-apt-repository ppa:certbot/certbot
apt-get updateAnd finally, install Certbot from the new repository with apt-get:
apt-get install python-certbot-apacheThe certbot Let's Encrypt client is now ready to use.
certbot --apache -d yourdomain.ltdIf you have multiple virtual hosts, you should run this command once for each to generate a new certificate for each.
certbot renew --dry-runIf you see no errors, you're all set. When necessary, certbot will renew your certificates and reload Apache to pick up the changes.