现在使用letsencrypt来激活https已经非常简单了。ubuntu 16.04下可以使用certbot工具来快速激活。
sudo add-apt-repository ppa:certbot/certbot
sudo apt-get update
sudo apt-get install python-certbot-apache
然后,激活某网站的https:
sudo certbot --apache -d example.com
letsencrypt默认90天生命期,可以使用cron每月更新一次:
0 2 1 * * /usr/bin/certbot renew --quiet
发表回复