From 0d6e0d7a9f6cca49ceec915a80cabf247402a2bf Mon Sep 17 00:00:00 2001 From: Fernando <82854646+FernandosPerez@users.noreply.github.com> Date: Sat, 2 May 2026 21:35:28 -0600 Subject: [PATCH] Add supervisord configuration for Laravel and Reverb --- supervisord.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 supervisord.conf diff --git a/supervisord.conf b/supervisord.conf new file mode 100644 index 00000000..53036fc5 --- /dev/null +++ b/supervisord.conf @@ -0,0 +1,12 @@ +[supervisord] +nodaemon=true + +[program:laravel] +command=php /app/artisan serve --host=0.0.0.0 --port=8080 +autostart=true +autorestart=true + +[program:reverb] +command=php /app/artisan reverb:start --host=0.0.0.0 --port=8085 +autostart=true +autorestart=true