We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7a516c commit b49ead7Copy full SHA for b49ead7
supervisord.conf
@@ -1,18 +1,23 @@
1
[supervisord]
2
nodaemon=true
3
logfile=/dev/stdout
4
+logfile_maxbytes=0
5
pidfile=/var/run/supervisord.pid
6
7
[program:nginx]
8
command=nginx -g 'daemon off;'
9
autostart=true
10
autorestart=true
11
stdout_logfile=/dev/stdout
12
+stdout_logfile_maxbytes=0
13
stderr_logfile=/dev/stderr
14
+stderr_logfile_maxbytes=0
15
16
[program:cleanup-watcher]
17
command=python3 /usr/local/bin/cleanup_watcher.py
18
19
20
-stderr_logfile=/dev/stderr
21
22
+stderr_logfile=/dev/stderr
23
0 commit comments