Skip to content

Instantly share code, notes, and snippets.

@omedhabib
Created May 4, 2016 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save omedhabib/8de8a5a7739726a0ab142a0f85295135 to your computer and use it in GitHub Desktop.
Save omedhabib/8de8a5a7739726a0ab142a0f85295135 to your computer and use it in GitHub Desktop.
Gunicorn.sh
#!/usr/bin/env bash
PROCESSOR_COUNT=$(nproc)
GUNICORN_WORKER_COUNT=$(( PROCESSOR_COUNT * 2 + 1 ))
gunicorn -w ${GUNICORN_WORKER_COUNT} -b 0.0.0.0:9808 app:application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment