From 4c3e4f82b0212d5848521fe48b80a2d57eb1e73a Mon Sep 17 00:00:00 2001 From: brightside Date: Thu, 14 Aug 2025 14:40:08 +0000 Subject: [PATCH] draft from chatgpt --- supervisord.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 supervisord.conf diff --git a/supervisord.conf b/supervisord.conf new file mode 100644 index 0000000..6e70588 --- /dev/null +++ b/supervisord.conf @@ -0,0 +1,14 @@ +[supervisord] +nodaemon=true + +[program:mysqld] +command=/usr/sbin/mysqld --datadir=/mnt/data/mysql +autorestart=true + +[program:php-fpm] +command=/usr/local/sbin/php-fpm +autorestart=true + +[program:queue-worker] +command=/usr/bin/php artisan queue:work --sleep=3 --tries=3 +autorestart=true