Install Let's Encrypt SSL with Certbot (Apache) on Debian 12
Step 1 – Install
apt update && apt upgrade -y
apt install -y certbot python3-certbot-apache
Step 2 – Obtain and install
certbot --apache -d example.com -d www.example.com
Step 3 – Verify
apachectl configtest && systemctl reload...