Configure Nginx Caddy Traefik for SSL and routing
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill reverse-proxy-setup --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Reverse Proxy Setup?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-reverse-proxy-setup)More formats (shields.io, HTML) on the badges page.
---
name: reverse-proxy-setup
description: "Configure Nginx Caddy Traefik for SSL and routing"
---
# Reverse Proxy Setup
## Nginx
```nginx
server {
listen 443 ssl;
server_name example.com;
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
```
## Caddy (Auto SSL)
```caddy
example.com {
reverse_proxy localhost:8000
}
```
## Traefik (Docker)
```yaml
labels:
- "traefik.http.routers.myapp.rule=Host(`example.com`)"
- "traefik.http.services.myapp.loadbalancer.server.port=8000"
```
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!