Security 2025-03-27
Let's Encrypt SSL Certificate: Free HTTPS Setup
Why SSL?
HTTPS encrypts traffic between your server and visitors. It's required for SEO, security, and browser trust. Let's Encrypt provides free SSL certificates.
Install Certbot
# Ubuntu/Debian
sudo apt install certbot python3-certbot-nginx
# CentOS
sudo yum install certbot python3-certbot-nginxGet Certificate
sudo certbot --nginx -d example.com -d www.example.comCertbot will automatically configure Nginx and set up auto-renewal.
Auto-Renewal
sudo certbot renew --dry-runCertificates auto-renew every 60 days via a systemd timer.
#Sudofree#Let's Encrypt