blob: 1f91f9da7c627c8cc7a4c2412c45f729bf590293 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Jitsi Videobridge settings
# sets the XMPP domain (default: none)
JVB_HOSTNAME=jitsi-meet.example.org
# sets the hostname of the XMPP server (default: domain if set, localhost otherwise)
JVB_HOST=
# sets the port of the XMPP server (default: 5275)
JVB_PORT=5347
# sets the shared secret used to authenticate to the XMPP server
JVB_SECRET=__PASSWORD_FOR_USER_jvb@auth.jitsi-meet.example.org__
# adds java system props that are passed to jvb (default are for home and logging config file)
JAVA_SYS_PROPS="\
-Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/etc\
-Dnet.java.sip.communicator.SC_HOME_DIR_NAME=jitsi-videobridge-nightly\
-Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/jitsi-videobridge-nightly\
-Djava.util.logging.config.file=/etc/jitsi-videobridge-nightly/logging.properties\
-Dconfig.file=/etc/jitsi-videobridge-nightly/jvb.conf\
-Djava.util.prefs.userRoot=/var/lib/jitsi-videobridge-nightly\
"
|