安装certbot(ubuntu 22.04 LTS)
1 | sudo apt install certbot |
获取证书
1 | sudo certbot certonly --standalone -d example.com --agree-tos --email [email protected] |
确保80端口未占用
成功提示:
证书有效期3个月,过期更新:
1 | sudo certbot renew --force-renew |
nginx配置
禁用 TLS1.0 nginx配置:
1 | ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3; |
https效果: