diff --git a/config/supervisor/supervisord.conf b/config/supervisor/supervisord.conf index 33bd482..928da80 100644 --- a/config/supervisor/supervisord.conf +++ b/config/supervisor/supervisord.conf @@ -1,4 +1,5 @@ [supervisord] +process_name=%(program_name)s_%(process_num)02d nodaemon=true user=invoiceninja pidfile=/var/run/supervisord/supervisord.pid @@ -7,6 +8,7 @@ logfile_maxbytes=0 loglevel=error [program:php-fpm] +process_name=%(program_name)s_%(process_num)02d stdout_logfile=/dev/stdout stdout_logfile_maxbytes=0 stderr_logfile=/dev/stderr @@ -14,6 +16,7 @@ stderr_logfile_maxbytes=0 command=php-fpm [program:scheduler] +process_name=%(program_name)s_%(process_num)02d stdout_logfile=/dev/stdout stdout_logfile_maxbytes=0 stderr_logfile=/dev/stderr @@ -21,6 +24,7 @@ stderr_logfile_maxbytes=0 command=php artisan schedule:work [program:queue-worker] +process_name=%(program_name)s_%(process_num)02d stdout_logfile=/dev/stdout stdout_logfile_maxbytes=0 stderr_logfile=/dev/stderr