mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
24 lines
561 B
Plaintext
24 lines
561 B
Plaintext
|
[supervisord] ## This is the main process for the Supervisor
|
||
|
nodaemon=true
|
||
|
|
||
|
[program:node]
|
||
|
command=node /app/apps/app/server.js
|
||
|
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/takeoff
|
||
|
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
|