-
Notifications
You must be signed in to change notification settings - Fork 206
/
supervisord.conf
65 lines (59 loc) · 1.47 KB
/
supervisord.conf
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[supervisord]
nodaemon=true
[program:core]
priority=1
environment=PATH="/opt/py3/bin:%(ENV_PATH)s",LANG=en_US.UTF-8
directory=/opt/jumpserver/
command=/opt/jumpserver/jms start
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autorestart=true
[program:koko]
priority=100
environment=LANG=en_US.UTF-8
directory=/opt/koko/
command=/opt/koko/entrypoint.sh ./koko
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autorestart=true
[program:guacd]
priority=10
environment=LANG=en_US.UTF-8,LD_LIBRARY_PATH=/opt/guacamole/lib
command=/opt/guacamole/sbin/guacd -b 0.0.0.0 -f -L debug -p /var/run/guacd.pid
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autorestart=true
[program:lion]
priority=100
environment=LANG=en_US.UTF-8
directory=/opt/lion/
command=/opt/lion/entrypoint.sh ./lion
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autorestart=true
[program:chen]
priority=100
directory=/opt/chen/
command=/opt/chen/entrypoint.sh wisp
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autorestart=true
[program:web]
priority=1000
directory=/opt
command=/opt/web/entrypoint.sh nginx -g "daemon off;"
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
autorestart=true