Skip to content

Commit b49ead7

Browse files
committed
fix logger
1 parent f7a516c commit b49ead7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

supervisord.conf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
[supervisord]
22
nodaemon=true
33
logfile=/dev/stdout
4+
logfile_maxbytes=0
45
pidfile=/var/run/supervisord.pid
56

67
[program:nginx]
78
command=nginx -g 'daemon off;'
89
autostart=true
910
autorestart=true
1011
stdout_logfile=/dev/stdout
12+
stdout_logfile_maxbytes=0
1113
stderr_logfile=/dev/stderr
14+
stderr_logfile_maxbytes=0
1215

1316
[program:cleanup-watcher]
1417
command=python3 /usr/local/bin/cleanup_watcher.py
1518
autostart=true
1619
autorestart=true
1720
stdout_logfile=/dev/stdout
18-
stderr_logfile=/dev/stderr
21+
stdout_logfile_maxbytes=0
22+
stderr_logfile=/dev/stderr
23+
stderr_logfile_maxbytes=0

0 commit comments

Comments
 (0)