File size: 519 Bytes
9234b02
 
 
 
885a2c2
 
 
 
 
9234b02
 
885a2c2
 
 
 
9234b02
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[supervisord]
nodaemon=true
user=root

[program:playwright-mcp]
# --headless: Runs without a GUI
# --host 0.0.0.0: Listens for external connections
# --port 3000: Internal port for Nginx to proxy
command=npx @modelcontextprotocol/server-playwright --port 3000 --transport sse --host 0.0.0.0 --headless
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0

[program:nginx]
command=nginx -g "daemon off;"
autostart=true
autorestart=true