[supervisord] nodaemon=true user=root logfile=/var/log/supervisor/supervisord.log pidfile=/var/run/supervisord.pid childlogdir=/var/log/supervisor [include] files=/etc/supervisor/conf.d/*.conf [inet_http_server] port=*:9001 username=supervisor password=${SUPERVISOR_HTTP_AUTH:-supervisor} [unix_http_server] file=/var/run/supervisor.sock chmod=0700 username=supervisor password=${SUPERVISOR_HTTP_AUTH:-supervisor} [supervisorctl] serverurl=unix:///var/run/supervisor.sock username=supervisor password=${SUPERVISOR_HTTP_AUTH:-supervisor} [rpcinterface:supervisor] supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface # ============================================ # Managed processes: cron + openclaw-gateway # ============================================ [program:cron] command=/bin/bash -c 'rm -f /var/run/crond.pid /var/run/cron.pid; exec /usr/sbin/cron -f' autostart=true autorestart=true startsecs=2 startretries=3 exitcodes=0 stopsignal=TERM stopasgroup=false killasgroup=false stdout_logfile=/var/log/hf-entrypoint/cron-stdout.log stderr_logfile=/var/log/hf-entrypoint/cron-stderr.log stdout_logfile_maxbytes=10MB stderr_logfile_maxbytes=10MB [program:backup-watchdog] command=/usr/local/bin/openclaw-backup-watchdog.sh user=root autostart=true autorestart=true startsecs=5 startretries=3 exitcodes=0 stopsignal=TERM stopasgroup=true killasgroup=true stdout_logfile=/var/log/hf-entrypoint/watchdog-stdout.log stderr_logfile=/var/log/hf-entrypoint/watchdog-stderr.log stdout_logfile_maxbytes=10MB stderr_logfile_maxbytes=10MB [program:openclaw-gateway] command=/usr/local/bin/openclaw-entrypoint.sh gateway autostart=true autorestart=false startsecs=5 startretries=0 exitcodes=0 stopsignal=TERM stopasgroup=true killasgroup=true stdout_logfile=/var/log/hf-entrypoint/openclaw-gateway-stdout.log stderr_logfile=/var/log/hf-entrypoint/openclaw-gateway-stderr.log stdout_logfile_maxbytes=10MB stderr_logfile_maxbytes=10MB