Knowledge Base

308 copy-ready commands with fill-in variables, plus step-by-step installation guides.

Installation Guides 11

Categories

Installation Guides (11)

Tags

5 results

SSL & Certbot

Install Certbot for Apache

sudo apt install -y certbot python3-certbot-apache
#ssl #certbot
3 views 0 copies
SSL & Certbot

Issue SSL certificate via Certbot (Apache)

sudo certbot --apache -d {{domain}}
#ssl #certbot
4 views 0 copies
SSL & Certbot

Test Certbot auto-renewal

sudo certbot renew --dry-run
#ssl #certbot
4 views 0 copies
SSL & Certbot

Check SSL Certificate Expiry Date

echo | openssl s_client -connect {{domain}}:443 2>/dev/null | openssl x509 -noou...
#ssl #tls
3 views 0 copies
SSL & Certbot

Issue Wildcard SSL Certificate

certbot certonly --manual --preferred-challenges=dns \
#ssl #certbot
3 views 0 copies