- 添加存储库 add-apt-repository ppa:certbot/certbot
- 安装Certbot的Nginx软件包 apt install python-certbot-nginx certbot
- 使用Certbot自动完成SSL证书申请和配置,Certbot会自动修改你的nginx配置文件 certbot –nginx -d example.org
- 自动更新证书日期,写个脚本,包含如下内容
service nginx stop
certbot renew –dry-run
certbot renew
service nginx start