Skip to content

Instantly share code, notes, and snippets.

@csytan
Last active August 29, 2015 13:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csytan/10597221 to your computer and use it in GitHub Desktop.
Save csytan/10597221 to your computer and use it in GitHub Desktop.
Tornado Upstart example
# Ubuntu upstart file at /etc/init/<service>.conf
# More info: http://upstart.ubuntu.com/cookbook/
start on runlevel [2345]
stop on runlevel [!2345]
respawn
respawn limit 10 5
setuid <username>
setgid <username>
exec /project_path/venv/bin/python ./main.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment