mirror of
https://github.com/makeplane/plane.git
synced 2025-12-20 05:39:32 +01: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
|