Update supervisord.conf

This commit is contained in:
Roman Kelesidis 2025-08-21 20:45:00 +03:00
commit ef50d17c97
No known key found for this signature in database
GPG key ID: D8157C4D4C4C6DB4

View file

@ -3,15 +3,28 @@ nodaemon=true
user=root
logfile=/var/log/supervisord.log
pidfile=/var/run/supervisord.pid
childlogdir=/var/log/supervisor
silent=true
[unix_http_server]
file=/var/run/supervisor.sock
chmod=0700
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=unix:///var/run/supervisor.sock
[program:cron]
command=cron -f
command=/usr/sbin/cron -f
autostart=true
autorestart=true
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
user=root
[program:frankenphp]
command=frankenphp run --config /etc/caddy/Caddyfile
@ -22,3 +35,4 @@ stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
user=www-data