fix for reaps

This commit is contained in:
Benjamin Brummer
2025-01-14 21:31:50 +00:00
parent a7683ada33
commit b58d4e1259

View File

@@ -1,7 +1,7 @@
[supervisord] [supervisord]
nodaemon=true nodaemon=true
user=root user=root
logfile=/dev/stdout logfile=/dev/null
logfile_maxbytes=0 logfile_maxbytes=0
pidfile=/var/run/supervisord.pid pidfile=/var/run/supervisord.pid
@@ -13,10 +13,9 @@ command=/usr/local/sbin/php-fpm -F
autostart=true autostart=true
autorestart=true autorestart=true
priority=5 priority=5
stdout_logfile=/dev/stdout stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0 stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr redirect_stderr=true
stderr_logfile_maxbytes=0
[program:queue-worker] [program:queue-worker]
process_name=%(program_name)s_%(process_num)02d process_name=%(program_name)s_%(process_num)02d
@@ -28,10 +27,9 @@ killasgroup=true
user=www-data user=www-data
numprocs=2 numprocs=2
environment=HOME="/var/www" environment=HOME="/var/www"
stdout_logfile=/dev/stdout stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0 stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr redirect_stderr=true
stderr_logfile_maxbytes=0
stopwaitsecs=3600 stopwaitsecs=3600
[program:scheduler] [program:scheduler]
@@ -39,7 +37,6 @@ command=php /var/www/html/artisan schedule:work --verbose
autostart=true autostart=true
autorestart=true autorestart=true
user=www-data user=www-data
stdout_logfile=/dev/stdout stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0 stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr redirect_stderr=true
stderr_logfile_maxbytes=0