安装certbot并申请ssl证书

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

service nginx stop

certbot renew –dry-run

certbot renew

service nginx start