How to set up Let’s Encrypt on old versions of Ubuntu

Today I wanted to add HTTPS support using Let’s Encrypt certificates for couple of old sites on very outdated legacy server, running Ubuntu 10.04.4 LTS and apache2.

The default “certbot” client which I’m using on other servers didn’t work because of outdated python and openssl version, so after some googling and trying couple of other clients, I finally found one that worked easy and flawlessly. It’s called acme.sh – https://github.com/Neilpang/acme.sh

After setup I ran (as root):

acme.sh --issue -d domain.com -d www.domain.com /home/domain/html/ \
-d otherdomain.com -w /home/otherdomain/html/ \
--certpath /etc/ssl/certs/domain.crt \
--keypath /etc/ssl/certs/domain.key \
--fullchainpath /etc/ssl/certs/intermediate.pem \
--reloadcmd  "service apache2 restart"

In apache config file for the virtual host I added:

SSLEngine on
SSLCertificateFile /etc/ssl/certs/domain.crt
SSLCertificateKeyFile /etc/ssl/certs/domain.key
SSLCertificateChainFile /etc/ssl/certs/intermediate.pem

And finally added acme.sh to crontab as described in its github page.

3 thoughts on “How to set up Let’s Encrypt on old versions of Ubuntu

  1. V April 24, 2017 / 12:39 pm

    Thanks for you guide, saved my ass.

  2. Antonio Misaka June 5, 2017 / 6:10 pm

    Thank you, that works quite well.

  3. Ralph May 28, 2018 / 9:45 pm

    Works up till today (May, 2018). Thank you!

Leave a Reply to Ralph Cancel reply

Your email address will not be published. Required fields are marked *