forked from github/plane
32 lines
737 B
Plaintext
32 lines
737 B
Plaintext
[supervisord] ## This is the main process for the Supervisor
|
|
nodaemon=true
|
|
|
|
[program:node]
|
|
command=sh /usr/local/bin/start.sh
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/var/log/node.err.log
|
|
stdout_logfile=/var/log/node.out.log
|
|
|
|
[program:python]
|
|
directory=/code
|
|
command=sh bin/docker-entrypoint-api.sh
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/var/log/python.err.log
|
|
stdout_logfile=/var/log/python.out.log
|
|
|
|
[program:nginx]
|
|
command=nginx -g "daemon off;"
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/var/log/nginx.err.log
|
|
stdout_logfile=/var/log/nginx.out.log
|
|
|
|
[program:worker]
|
|
directory=/code
|
|
command=sh bin/worker
|
|
autostart=true
|
|
autorestart=true
|
|
stderr_logfile=/var/log/worker.err.log
|
|
stdout_logfile=/var/log/worker.out.log |