Hello, I am using Laravel in my projects and I am working with the queuing system. I installed supervisor on another server, but when I use AApanel's supervisor, the application does not stand up. Can you help with this.
Supervisor ini file I created myself
[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
command=php /www/wwwroot/website/artisan queue:work --queue=invoice,email,default
autostart=true
autorestart=truejavascript:;
numpocs=8
;user=forge
numprocs=8
redirect_stderr=true
stdout_logfile=/www/wwwroot/website/storage/logs/worker.log
AApanel Suvervisor ini file
[program:laravel]
command=php /www/wwwroot/website/artisan queue:work --queue=fatura,email,default
directory=/www/wwwroot/website/
autorestart=true
startsecs=3
startretries=3
stdout_logfile=/www/server/panel/plugin/supervisor/log/laravel.out.log
stderr_logfile=/www/server/panel/plugin/supervisor/log/laravel.err.log
stdout_logfile_maxbytes=2MB
stderr_logfile_maxbytes=2MB
user=root
priority=999
numprocs=8
process_name=%(program_name)s_%(process_num)02d
