Update supervisord.conf
Browse files- 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:
|
| 8 |
-
#
|
| 9 |
-
|
|
|
|
|
|
|
| 10 |
autostart=true
|
| 11 |
autorestart=true
|
| 12 |
-
stdout_logfile=/
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 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;"
|