Running multiple Laravel queue workers using Supervisor
问题 I using Laravel queues using a database driver and supervisor to keep a queue worker running all the time: [program:laravel_queue] command=php artisan queue:listen --timeout=1800 --tries=5 directory=/var/app/current stdout_logfile=/var/app/support/logs/laravel-queue.log logfile_maxbytes=0 logfile_backups=0 redirect_stderr=true autostart=true autorestart=true startretries=86400 EOB Some of the queue tasks can take around 10 minutes to complete. I have 2 parts to the question: 1) How can i edit