# Gunicorn

> Python WSGI HTTP server for production deployment

- Skill: `javimosch/gunicorn` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/gunicorn`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/gunicorn/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/gunicorn

---

# gunicorn Plugin

Gunicorn ('Green Unicorn') is a Python WSGI HTTP Server for UNIX. It's a pre-fork worker model server for running Python web applications in production.

## Common Commands

- `gunicorn myapp:app` — serve a WSGI app on default 127.0.0.1:8000
- `gunicorn myapp:app -w 4 -b 0.0.0.0:8000` — serve with 4 workers
- `gunicorn myapp:app --reload` — development with auto-reload
- `gunicorn --version` — show version
- `gunicorn -c config.py myapp:app` — use config file

