Guest User

Untitled

a guest
May 4th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. PROCESSOR_COUNT=$(nproc)
  4. GUNICORN_WORKER_COUNT=$(( PROCESSOR_COUNT * 2 + 1 ))
  5.  
  6. gunicorn -w ${GUNICORN_WORKER_COUNT} -b 0.0.0.0:9808 app:application
Add Comment
Please, Sign In to add comment