32 lines
676 B
Plaintext
32 lines
676 B
Plaintext
|
[rpcinterface:supervisor]
|
||
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
||
|
|
||
|
[unix_http_server]
|
||
|
file = /tmp/supervisor.sock
|
||
|
chmod = 0777
|
||
|
|
||
|
[supervisorctl]
|
||
|
serverurl = unix:///tmp/supervisor.sock
|
||
|
|
||
|
[supervisord]
|
||
|
logfile = /tmp/supervisord.log
|
||
|
logfile_maxbytes = 50MB
|
||
|
logfile_backups=10
|
||
|
loglevel = info
|
||
|
pidfile = /tmp/supervisord.pid
|
||
|
nodaemon = false
|
||
|
minfds = 1024
|
||
|
minprocs = 200
|
||
|
umask = 022
|
||
|
user = deploy
|
||
|
identifier = supervisor
|
||
|
directory = /tmp
|
||
|
nocleanup = true
|
||
|
childlogdir = /tmp
|
||
|
strip_ansi = false
|
||
|
|
||
|
[program:reimagine]
|
||
|
command=/usr/bin/python /vagrant/app.py
|
||
|
|
||
|
[program:rethinkdb]
|
||
|
command=/usr/bin/rethinkdb --config-file /etc/rethinkdb/rdb0.conf
|