fix queue workers
This commit is contained in:
parent
31cadb9402
commit
937f0fff2a
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
[supervisord]
|
[supervisord]
|
||||||
nodaemon=true
|
nodaemon=true
|
||||||
|
user=root
|
||||||
|
|
||||||
[program:cron]
|
[program:cron]
|
||||||
process_name=%(program_name)s
|
process_name=%(program_name)s
|
||||||
|
@ -10,7 +11,7 @@ user=root
|
||||||
|
|
||||||
[program:laravel-worker]
|
[program:laravel-worker]
|
||||||
process_name=%(program_name)s_%(process_num)02d
|
process_name=%(program_name)s_%(process_num)02d
|
||||||
command=php /var/www/html/pterodactyl/artisan queue:work database --queue=high,standard,low --sleep=3 --tries=3
|
command=php /var/www/html/pterodactyl/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3
|
||||||
autostart=true
|
autostart=true
|
||||||
autorestart=true
|
autorestart=true
|
||||||
user=pterodactyl
|
user=pterodactyl
|
||||||
|
|
Reference in a new issue