Subham9126 commited on
Commit
283fe23
·
verified ·
1 Parent(s): 3968145

Update supervisord.conf

Browse files
Files changed (1) hide show
  1. supervisord.conf +7 -5
supervisord.conf CHANGED
@@ -1,21 +1,23 @@
1
  [supervisord]
2
  nodaemon=true
3
  user=root
 
 
4
 
5
  [program:localstack]
 
6
  command=localstack start --host
7
  autostart=true
8
  autorestart=true
 
 
9
 
10
  [program:n8n]
11
  command=n8n start
12
  autostart=true
13
  autorestart=true
14
-
15
- [program:vault]
16
- command=vault server -dev -dev-listen-address=0.0.0.0:8200
17
- autostart=true
18
- autorestart=true
19
 
20
  [program:nginx]
21
  command=nginx -g "daemon off;"
 
1
  [supervisord]
2
  nodaemon=true
3
  user=root
4
+ logfile=/var/log/supervisor/supervisord.log
5
+ pidfile=/var/run/supervisord.pid
6
 
7
  [program:localstack]
8
+ # LocalStack is already in the path in this base image
9
  command=localstack start --host
10
  autostart=true
11
  autorestart=true
12
+ stdout_logfile=/var/log/localstack.log
13
+ stderr_logfile=/var/log/localstack.err
14
 
15
  [program:n8n]
16
  command=n8n start
17
  autostart=true
18
  autorestart=true
19
+ stdout_logfile=/var/log/n8n.log
20
+ stderr_logfile=/var/log/n8n.err
 
 
 
21
 
22
  [program:nginx]
23
  command=nginx -g "daemon off;"