forked from bigbluebutton/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
supervisord.conf
91 lines (77 loc) · 2.72 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[supervisord]
nodaemon=true
[supervisorctl]
serverurl=unix:///var/run/supervisor.sock
[program:redis-server]
startsecs = 0
autorestart = false
#user=redis
command=/usr/bin/redis-server /etc/redis/redis.conf
stdout_logfile=/var/log/redis/stdout.log
stderr_logfile=/var/log/redis/stderr.log
[program:nginx]
startsecs = 0
autorestart = false
command=/usr/sbin/nginx -g "daemon off;"
[program:freeswitch]
startsecs = 0
autorestart = false
user=freeswitch
group=daemon
directory=/opt/freeswitch
command=/opt/freeswitch/bin/freeswitch -nc -nf -core -nonat
[program:bbb-apps-akka]
startsecs = 0
autorestart = false
user=bigbluebutton
directory=/usr/share/bbb-apps-akka
command=/usr/share/bbb-apps-akka/bin/bbb-apps-akka
[program:bbb-fsesl-akka]
startsecs = 0
autorestart = false
user=bigbluebutton
directory=/usr/share/bbb-fsesl-akka
command=/usr/share/bbb-fsesl-akka/bin/bbb-fsesl-akka
[program:red5]
startsecs = 0
autorestart = false
user=red5
directory=/usr/share/red5
command=/usr/share/red5/red5.sh
[program:rap-archive-worker]
command=/usr/local/bigbluebutton/core/scripts/rap-archive-worker.rb
directory=/usr/local/bigbluebutton/core/scripts
user=tomcat7
autorestart=true
[program:rap-process-worker]
command=/usr/local/bigbluebutton/core/scripts/rap-process-worker.rb
directory=/usr/local/bigbluebutton/core/scripts
user=tomcat7
autorestart=true
[program:rap-sanity-worker]
command=/usr/local/bigbluebutton/core/scripts/rap-sanity-worker.rb
directory=/usr/local/bigbluebutton/core/scripts
user=tomcat7
autorestart=true
[program:rap-publish-worker]
command=/usr/local/bigbluebutton/core/scripts/rap-publish-worker.rb
directory=/usr/local/bigbluebutton/core/scripts
user=tomcat7
autorestart=true
[program:mongod]
command=/usr/bin/mongod --quiet --config /etc/mongod.conf
stdout_logfile=/var/log/supervisor/%(program_name)s.log
stderr_logfile=/var/log/supervisor/%(program_name)s.log
user=mongodb
autorestart=true
[program:bbb-html5]
command=/usr/share/meteor/bundle/systemd_start.sh
directory=/usr/share/meteor/bundle
user=meteor
group=meteor
autorestart=true
[program:tomcat7]
startsecs = 0
autorestart = false
user=tomcat7
command=/usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/bin/java -Djava.util.logging.config.file=/var/lib/tomcat7/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.awt.headless=true -Xmx128m -XX:+UseConcMarkSweepGC -Xms256m -Xmx256m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/var/bigbluebutton/diagnostics -Djava.endorsed.dirs=/usr/share/tomcat7/endorsed -classpath /usr/share/tomcat7/bin/bootstrap.jar:/usr/share/tomcat7/bin/tomcat-juli.jar -Dcatalina.base=/var/lib/tomcat7 -Dcatalina.home=/usr/share/tomcat7 -Djava.io.tmpdir=/tmp/tomcat7-tomcat7-tmp org.apache.catalina.startup.Bootstrap start