Let’s Encrypt证书的有效期通常为90天。为了确保服务器的持续安全,需要定期更新这些证书。你可以使用Certbot工具来自动完成这个过程。以下是在Ubuntu系统上配置Let’s Encrypt证书自动续期的具体步骤:
sudo apt update
sudo apt install certbot python3-certbot-apache
sudo certbot --apache
0 0,12 * * * certbot renew --quiet
通过上述步骤,你可以轻松地为Ubuntu服务器上的网站配置Let’s Encrypt证书,并确保其自动续订,从而避免证书过期带来的安全风险。