From 4c5e5028da425bacbfb05d8500a4fb583f87e588 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 13 Jul 2025 13:38:32 +0000 Subject: [PATCH] supervisord test --- supervisord/supervisord.conf | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/supervisord/supervisord.conf b/supervisord/supervisord.conf index 00fa9df..8a07cf1 100644 --- a/supervisord/supervisord.conf +++ b/supervisord/supervisord.conf @@ -2,6 +2,8 @@ nodaemon=true logfile=/dev/null loglevel=error +stdout_logfile_maxbytes = 0 +stderr_logfile_maxbytes = 0 [program:hottub] command=bash /app/supervisord/hottub.sh @@ -10,15 +12,21 @@ autorestart=true stdout_logfile=/dev/stdout stderr_logfile=/dev/stderr directory=/app +stdout_logfile_maxbytes = 0 +stderr_logfile_maxbytes = 0 [program:vnc] command=/dockerstartup/vnc_startup.sh --wait autostart=true autorestart=true +stdout_logfile_maxbytes = 0 +stderr_logfile_maxbytes = 0 [program:burpsuite] command=bash /app/supervisord/burpsuite.sh autostart=true autorestart=true stdout_logfile=/dev/stdout -stderr_logfile=/dev/stderr \ No newline at end of file +stderr_logfile=/dev/stderr +stdout_logfile_maxbytes = 0 +stderr_logfile_maxbytes = 0 \ No newline at end of file