-
Notifications
You must be signed in to change notification settings - Fork 254
Expand file tree
/
Copy pathsupervisord.conf
More file actions
44 lines (40 loc) · 926 Bytes
/
supervisord.conf
File metadata and controls
44 lines (40 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[supervisord]
nodaemon=true
logfile=/dev/null
logfile_maxbytes=0
[program:zoekt]
command=./prefix-output.sh zoekt-webserver -index %(ENV_DATA_CACHE_DIR)s/index -rpc
priority=10
autostart=true
autorestart=true
startretries=3
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true
[program:web]
command=./prefix-output.sh node packages/web/server.js
priority=20
autostart=true
autorestart=true
startretries=3
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true
[program:backend]
command=./prefix-output.sh node packages/backend/dist/index.js
priority=20
autostart=true
autorestart=true
startretries=3
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true
[program:redis]
command=redis-server --dir %(ENV_REDIS_DATA_DIR)s
priority=10
autostart=%(ENV_REDIS_EMBEDDED)s
autorestart=true
startretries=3
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true