11; supervisor config file
22
33[unix_http_server]
4- file= /var/run/supervisor.sock ; (the path to the socket file)
5- chmod= 0700 ; sockef file mode (default 0700)
4+ file = /var/run/supervisor.sock ; (the path to the socket file)
5+ chmod = 0700 ; socket file mode (default 0700)
66
77[inet_http_server] ; inet (TCP) server disabled by default
88port=*:9001 ; (ip_address:port specifier, *:port for all iface)
99;username=user ; (default is no username (open server))
1010;password=123 ; (default is no password (open server))
1111
1212[supervisord]
13- logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
14- pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
15- childlogdir=/var/log/supervisor ; ('AUTO' child log dir, default $TEMP)
13+ logfile = /dev/null ; (no logfile, stdout only; default $CWD/supervisord.log)
14+ pidfile = /var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
15+ childlogdir = /var/log/supervisor ; ('AUTO' child log dir, default $TEMP)
16+ logfile_maxbytes = 0
1617stdout_logfile_maxbytes = 0
1718stderr_logfile_maxbytes = 0
1819
@@ -23,7 +24,7 @@ stderr_logfile_maxbytes = 0
2324supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
2425
2526[supervisorctl]
26- serverurl= unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket
27+ serverurl = unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket
2728
2829; The [include] section can just contain the "files" setting. This
2930; setting can list multiple files (separated by whitespace or
@@ -37,8 +38,8 @@ files = /lowcoder/etc/supervisord/conf-enabled/*.conf
3738# ; This event listener is used to capture processes log
3839# ; and forward to container log using supervisor_stdout
3940# ; Ref: https://github.com/coderanger/supervisor-stdout
40- # [eventlistener:stdout]
41- # command = supervisor_stdout
42- # buffer_size = 100
43- # events = PROCESS_LOG
41+ # [eventlistener:stdout]
42+ # command = supervisor_stdout
43+ # buffer_size = 100
44+ # events = PROCESS_LOG
4445# result_handler = supervisor_stdout:event_handler
0 commit comments