2020-08-15 04:56:27 +00:00
|
|
|
[supervisord]
|
|
|
|
nodaemon=true
|
|
|
|
logfile=/tmp/supervisord.log
|
|
|
|
childlogdir=/tmp
|
|
|
|
pidfile = /tmp/supervisord.pid
|
|
|
|
|
|
|
|
[program:gunicorn]
|
|
|
|
directory=/usr/src/app/CalibreWebCompanion
|
|
|
|
command=gunicorn CalibreWebCompanion.wsgi
|
|
|
|
stdout_logfile=/dev/stdout
|
|
|
|
stdout_logfile_maxbytes=0
|
|
|
|
stderr_logfile=/dev/stderr
|
|
|
|
stderr_logfile_maxbytes=0
|
|
|
|
autorestart=false
|
|
|
|
startretries=0
|
|
|
|
startsecs = 0
|
|
|
|
|
|
|
|
[program:nginx]
|
|
|
|
# user=www
|
|
|
|
command=nginx
|
|
|
|
stdout_logfile=/dev/stdout
|
|
|
|
stdout_logfile_maxbytes=0
|
|
|
|
stderr_logfile=/dev/stderr
|
|
|
|
stderr_logfile_maxbytes=0
|
|
|
|
autorestart=false
|
2020-08-15 14:00:25 +00:00
|
|
|
startretries=0
|
|
|
|
|
|
|
|
[program:startupscript]
|
|
|
|
directory=/usr/src/app
|
|
|
|
command=python ./startupscript.py
|
|
|
|
stdout_logfile=/dev/stdout
|
|
|
|
stdout_logfile_maxbytes=0
|
|
|
|
stderr_logfile=/dev/stderr
|
|
|
|
stderr_logfile_maxbytes=0
|
|
|
|
autorestart=false
|
2020-08-15 04:56:27 +00:00
|
|
|
startretries=0
|