39 lines
741 B
Plaintext
39 lines
741 B
Plaintext
[supervisord]
|
|
|
|
[program:maintain]
|
|
command=bash maintain
|
|
directory=/code
|
|
user=user
|
|
redirect_stderr=true
|
|
stdout_logfile=/proc/1/fd/1
|
|
stderr_logfile=/proc/1/fd/1
|
|
stdout_maxbytes=0
|
|
stderr_maxbytes=0
|
|
stdout_logfile_maxbytes = 0
|
|
stderr_logfile_maxbytes = 0
|
|
|
|
[program:serve]
|
|
command=bash serve
|
|
directory=/code
|
|
user=user
|
|
redirect_stderr=true
|
|
stdout_logfile=/proc/1/fd/1
|
|
stderr_logfile=/proc/1/fd/1
|
|
stdout_maxbytes=0
|
|
stderr_maxbytes=0
|
|
stdout_logfile_maxbytes = 0
|
|
stderr_logfile_maxbytes = 0
|
|
|
|
[program:memcached]
|
|
command=/usr/bin/memcached start -u memcached
|
|
directory=/
|
|
user=user
|
|
redirect_stderr=true
|
|
stdout_logfile=/proc/1/fd/1
|
|
stderr_logfile=/proc/1/fd/1
|
|
stdout_maxbytes=0
|
|
stderr_maxbytes=0
|
|
stdout_logfile_maxbytes = 0
|
|
stderr_logfile_maxbytes = 0
|
|
|