Awesome-omni-skill Server
Configure, deploy, and troubleshoot web servers, application servers, and containerized services.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/server" ~/.claude/skills/diegosouzapw-awesome-omni-skill-server && rm -rf "$T"
manifest:
skills/development/server/SKILL.mdsource content
Scope
This skill covers the software layer — what runs inside a machine. For infrastructure (provisioning VMs, SSH hardening, firewalls, backups), use the
vps skill.
When to Use
- Configuring nginx, Caddy, or Apache
- Deploying Node.js, Python, Go, or other apps
- Docker and Docker Compose setups
- SSL/TLS certificates with Let's Encrypt
- Reverse proxy and load balancing
- Process management (pm2, systemd services)
- Troubleshooting port conflicts, CORS, connection errors
- Self-hosting (Plex, Nextcloud, game servers)
- Local development servers (Vite, webpack-dev-server)
Common Pitfalls
- Port already in use — Check with
orlsof -i :PORT
, kill stale processesss -tlnp | grep PORT - CORS in development — Proxy through your dev server or configure backend headers, don't disable in production
- SSL certificate issues — Certbot needs port 80/443 open, use
or--standalone
mode appropriately--webroot - nginx config not loading — Always run
beforenginx -tsystemctl reload nginx - Docker container can't reach host — Use
(Docker Desktop) orhost.docker.internal
(Linux)172.17.0.1 - Process dies after SSH disconnect — Use systemd, pm2, or run inside tmux/screen
- Wrong permissions on mounted volumes — Match container user UID with host file ownership
Patterns by Use Case
| Use Case | Recommended Stack |
|---|---|
| Static site | Caddy (auto-SSL, zero config) |
| Node.js app | PM2 + nginx reverse proxy |
| Python (Django/FastAPI) | Gunicorn + nginx |
| Multiple services | Docker Compose + Traefik |
| Game server | Dedicated container + port mapping |
For framework-specific configs, see
configs.md.
For Docker Compose patterns, see docker.md.
Debugging Checklist
- Is the process running?
orsystemctl statusdocker ps - Is it listening?
ss -tlnp | grep PORT - Can you reach it locally?
curl localhost:PORT - Firewall blocking? Check
or cloud security groupsufw status - Reverse proxy misconfigured? Check nginx logs:
/var/log/nginx/error.log - DNS pointing correctly?
ordig domain.comnslookup