From 937f0fff2ae64250a2b440157ba53f568456faa8 Mon Sep 17 00:00:00 2001 From: saibotk Date: Mon, 29 Jul 2019 04:34:54 +0200 Subject: [PATCH] fix queue workers --- services/php/supervisord.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/php/supervisord.conf b/services/php/supervisord.conf index 70661f0..10c67b9 100644 --- a/services/php/supervisord.conf +++ b/services/php/supervisord.conf @@ -1,5 +1,6 @@ [supervisord] nodaemon=true +user=root [program:cron] process_name=%(program_name)s @@ -10,7 +11,7 @@ user=root [program:laravel-worker] 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 autorestart=true user=pterodactyl