Subham9126 commited on
Commit
885a2c2
·
verified ·
1 Parent(s): 03c389c

Update supervisord.conf

Browse files
Files changed (1) hide show
  1. supervisord.conf +9 -14
supervisord.conf CHANGED
@@ -1,23 +1,18 @@
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;"
 
1
  [supervisord]
2
  nodaemon=true
3
  user=root
 
 
4
 
5
+ [program:playwright-mcp]
6
+ # --headless: Runs without a GUI
7
+ # --host 0.0.0.0: Listens for external connections
8
+ # --port 3000: Internal port for Nginx to proxy
9
+ command=npx @modelcontextprotocol/server-playwright --port 3000 --transport sse --host 0.0.0.0 --headless
10
  autostart=true
11
  autorestart=true
12
+ stdout_logfile=/dev/stdout
13
+ stdout_logfile_maxbytes=0
14
+ stderr_logfile=/dev/stderr
15
+ stderr_logfile_maxbytes=0
 
 
 
 
 
16
 
17
  [program:nginx]
18
  command=nginx -g "daemon off;"