Request and renew Let's Encrypt certs with certbot
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill ssl-cert-management --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ssl Cert Management?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-ssl-cert-management)More formats (shields.io, HTML) on the badges page.
---
name: ssl-cert-management
description: "Request and renew Let's Encrypt certs with certbot"
---
# SSL Certificate Management
## Certbot
```bash
# Install
sudo apt install certbot python3-certbot-nginx
# Get cert
sudo certbot --nginx -d example.com -d www.example.com
# Test renewal
sudo certbot renew --dry-run
# Auto-renewal (systemd)
sudo systemctl enable certbot.timer
```
## Manual DNS Challenge
```bash
certbot certonly --manual --preferred-challenges dns -d example.com
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!