Files
DOCKER_PHP_BASE/supervisor/conf.d/laravel-queues.conf
T
2025-11-23 22:34:17 +01:00

38 lines
1.0 KiB
Plaintext

[program:laravel-worker-default]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/html/artisan queue:work --queue=default,importstatistics
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
numprocs=1
redirect_stderr=true
stdout_logfile=/var/www/html/storage/logs/worker.log
stopwaitsecs=3600
stdout_logfile_maxbytes=5MB
[program:laravel-worker-statistics]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/html/artisan queue:work --queue=statisticss
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
numprocs=1
redirect_stderr=true
stdout_logfile=/var/www/html/storage/logs/worker.log
stopwaitsecs=3600
stdout_logfile_maxbytes=5MB
[program:laravel-worker-detections]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/html/artisan queue:work --queue=detectionss
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
numprocs=1
redirect_stderr=true
stdout_logfile=/var/www/html/storage/logs/worker.log
stopwaitsecs=3600
stdout_logfile_maxbytes=5MB