You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
596 B
31 lines
596 B
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
|
|
[program:cron]
|
|
command=cron.sh
|
|
autostart=true
|
|
autorestart=true
|
|
|
|
[program:queue]
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
command=queue.sh
|
|
numprocs=1
|
|
stdout_logfile=/proc/1/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/proc/1/fd/2
|
|
stderr_logfile_maxbytes=0
|
|
autostart=true
|
|
autorestart=true
|
|
startretries=0
|
|
|
|
[program:httpd]
|
|
process_name=%(program_name)s_%(process_num)02d
|
|
command=entrypoint.sh apache2-foreground
|
|
stdout_logfile=/proc/1/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/proc/1/fd/2
|
|
stderr_logfile_maxbytes=0
|
|
autostart=true
|
|
autorestart=true
|