From 7b1834af42e470c5741848c3bd22e8dbfa27e234 Mon Sep 17 00:00:00 2001 From: dimitri Date: Mon, 9 Jun 2025 23:23:26 +0200 Subject: [PATCH] Ajouter glpi/supervisord.conf --- glpi/supervisord.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 glpi/supervisord.conf diff --git a/glpi/supervisord.conf b/glpi/supervisord.conf new file mode 100644 index 0000000..497293a --- /dev/null +++ b/glpi/supervisord.conf @@ -0,0 +1,15 @@ +[supervisord] +nodaemon=true + +[program:php-fpm] +command=/usr/sbin/php-fpm --nodaemonize +startsecs=5 +autorestart=true +stderr_logfile=/var/log/php-fpm.err.log +stdout_logfile=/var/log/php-fpm.out.log + +[program:nginx] +command=/usr/sbin/nginx -g "daemon off;" +autorestart=true +stderr_logfile=/var/log/nginx.err.log +stdout_logfile=/var/log/nginx.out.log \ No newline at end of file