在ubuntu16.04的环境下配置https

闲话短说,本文系统基于ubuntu16.04的nginx环境,采用Certbot,(官网:https://certbot.eff.org/#ubuntuxenial-nginx) 选择自己对于的系统版本。就会生成对于的安装命令。
ubuntu16.04的安装相对于是非常简单的。

一、添加源
 sudo apt-get update
 sudo apt-get install software-properties-common
 sudo add-apt-repository ppa:certbot/certbot
 sudo apt-get update
 sudo apt-get install python-certbot-nginx 
二、获取SSL
 sudo certbot --authenticator webroot --installer nginx

注意:按照英文提示配置,这一步完成https即可访问

三、自动更新证书

一般配置的证书是90天,设置以下命令可自动更新证书

sudo certbot renew --dry-run

你可能感兴趣的:(在ubuntu16.04的环境下配置https)