From fa25a82693f11e3d3c17284e23f6bfa85e5ed7c6 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Sat, 25 Jan 2025 21:12:16 -0600 Subject: [PATCH] wip --- docker/supervisord.conf | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docker/supervisord.conf b/docker/supervisord.conf index 5a7cc02..dd812ae 100644 --- a/docker/supervisord.conf +++ b/docker/supervisord.conf @@ -4,12 +4,11 @@ user=root pidfile=/var/run/supervisord.pid [program:nginx] -command=nginx -g 'user www-data; daemon off;' +command=nginx -g 'daemon off;' autostart=true autorestart=true redirect_stderr=true stdout_logfile=/dev/stdout -stderr_logfile=/dev/stderr [program:php] command=php-fpm -F --user=www-data --group=www-data @@ -17,14 +16,12 @@ autostart=true autorestart=true redirect_stderr=true stdout_logfile=/dev/stdout -stderr_logfile=/dev/stderr [program:scheduler] command=php artisan schedule:work autorestart=true redirect_stderr=true stdout_logfile=/dev/stdout -stderr_logfile=/dev/stderr [program:queue-worker] command=php artisan queue:work --sleep=3 --tries=1 --memory=256 --timeout=3600 @@ -32,7 +29,6 @@ process_name=%(program_name)s_%(process_num)02d autorestart=true redirect_stderr=true stdout_logfile=/dev/stdout -stderr_logfile=/dev/stderr numprocs=2 [supervisorctl] \ No newline at end of file