Spaces:
Paused
Paused
Update supervisord.conf
Browse files- supervisord.conf +7 -0
supervisord.conf
CHANGED
@@ -1,5 +1,12 @@
|
|
1 |
[supervisord]
|
2 |
nodaemon=true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
[program:backend]
|
5 |
command=python backend.py
|
|
|
1 |
[supervisord]
|
2 |
nodaemon=true
|
3 |
+
logfile=/dev/null
|
4 |
+
logfile_maxbytes=0
|
5 |
+
loglevel=info
|
6 |
+
stdout_logfile=/dev/stdout
|
7 |
+
stdout_logfile_maxbytes=0
|
8 |
+
stderr_logfile=/dev/stderr
|
9 |
+
stderr_logfile_maxbytes=0
|
10 |
|
11 |
[program:backend]
|
12 |
command=python backend.py
|