Skip to content

Certbot

Installation

sudo apt install certbot python3-certbot-nginx

Obtaining TLS Certificate

Attention

Must have server_name domain.com www.domain.com; configured.

sudo certbot --nginx -d domain.com -d www.domain.com

Auto-renewal

Check Timer Status
sudo systemctl status certbot.timer
Auto-renewal
sudo certbot renew --dry-run

🔗 SSL Labs Server Check

Back to top