Skip to content

Instantly share code, notes, and snippets.

@respondcreate
Created April 5, 2016 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save respondcreate/e8e3c04b65450abe5589fc085ef0ea58 to your computer and use it in GitHub Desktop.
Save respondcreate/e8e3c04b65450abe5589fc085ef0ea58 to your computer and use it in GitHub Desktop.
description "Gunicorn application server running myproject"
start on runlevel [2345]
stop on runlevel [!2345]
respawn
setuid median
setgid www-data
env PATH=/home/user/myproject/ENV/bin
chdir /home/user/myproject
exec gunicorn --workers 3 --bind unix:myproject.sock -m 007 wsgi:app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment