Create supervisord.conf
Browse files- supervisord.conf +23 -0
supervisord.conf
ADDED
|
@@ -0,0 +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;"
|
| 22 |
+
autostart=true
|
| 23 |
+
autorestart=true
|