Skip to content

Instantly share code, notes, and snippets.

@PraneethKarnena
Last active January 21, 2020 08:14
Show Gist options
  • Save PraneethKarnena/bd37ffe1ae5ad01a2de3b844cf411f50 to your computer and use it in GitHub Desktop.
Save PraneethKarnena/bd37ffe1ae5ad01a2de3b844cf411f50 to your computer and use it in GitHub Desktop.
Run Gunicorn with basic configuration options.
gunicorn --bind=127.0.0.1:8000 --workers=4 --worker-class=gevent --threads=8 --worker-connections=100000 --timeout=63 --keep-alive=60 django_project.wsgi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment