29 lines
581 B
Plaintext
29 lines
581 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
logfile=/var/log/supervisord.log
|
|
logfile_maxbytes=50MB
|
|
logfile_backups=10
|
|
loglevel=info
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
[program:php-fpm]
|
|
command=php-fpm
|
|
autostart=true
|
|
autorestart=true
|
|
startretries=3
|
|
startsecs=1
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:think-cron]
|
|
command=php /var/www/html/think cron:schedule
|
|
autostart=true
|
|
autorestart=true
|
|
startretries=5
|
|
startsecs=2
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0 |