Skip to content

Instantly share code, notes, and snippets.

@dhrrgn
Last active August 29, 2015 13:57
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 dhrrgn/9648962 to your computer and use it in GitHub Desktop.
Save dhrrgn/9648962 to your computer and use it in GitHub Desktop.
Sixpack Supervisor Config
[program:sixpack_server]
command=gunicorn --access-logfile - -w 8 -b 127.0.0.1:5000 --worker-class=gevent sixpack.server:start
user=nobody
autostart=true
autorestart=true
environment=SIXPACK_CONFIG="/etc/sixpack/config.yml"
[program:sixpack_web]
command=gunicorn --access-logfile - -w 2 -b 127.0.0.1:5001 --worker-class=gevent sixpack.web:start
user=nobody
autostart=true
autorestart=true
environment=SIXPACK_CONFIG="/etc/sixpack/config.yml"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment