Let’s Encrypt důvěryhodný certifikát pro vaši doménu zdarma. Platnost certifikátu od Let’s Encrypt je jen tři měsíce, ale je možnost prodloužit certifikát scriptem automaticky z cronu. Klient a návody na https://certbot.eff.org/
Instalace Debian:
/etc/apt/sources.list.d/
deb http://ftp.debian.org/debian jessie-backports main
apt-get update
sudo apt-get install python-certbot-apache -t jessie-backports
Použití: certbot --apache // dialog pro které weby vystavit certbot --apache certonly certbot renew --dry-run //test renew certifikátu certbot renew --quiet //do cronu spustit jednou za 3 měsíce
Instalace Ubuntu:
wget https://dl.eff.org/certbot-auto
chmod a+x certbot-auto
Použití: ./path/to/certbot-auto // dialog pro které weby vystavit ./path/to/certbot-auto -apache certonly ./path/to/certbot-auto renew --dry-run //test renew certifikátu ./path/to/certbot-auto renew --quiet //do cronu spustit jednou za 3 měsíce
Renew certifikátu se provádí při zastaveném Apache
service apache2 stop service apache2 start