1
1
; supervisor config file
2
2
3
3
[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)
6
6
7
7
[inet_http_server] ; inet (TCP) server disabled by default
8
8
port=*:9001 ; (ip_address:port specifier, *:port for all iface)
9
9
;username=user ; (default is no username (open server))
10
10
;password=123 ; (default is no password (open server))
11
11
12
12
[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
16
17
stdout_logfile_maxbytes = 0
17
18
stderr_logfile_maxbytes = 0
18
19
@@ -23,7 +24,7 @@ stderr_logfile_maxbytes = 0
23
24
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
24
25
25
26
[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
27
28
28
29
; The [include] section can just contain the "files" setting. This
29
30
; setting can list multiple files (separated by whitespace or
@@ -37,8 +38,8 @@ files = /lowcoder/etc/supervisord/conf-enabled/*.conf
37
38
# ; This event listener is used to capture processes log
38
39
# ; and forward to container log using supervisor_stdout
39
40
# ; 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
44
45
# result_handler = supervisor_stdout:event_handler
0 commit comments