2020-04-11 21:55:05 +02:00
|
|
|
# Jitsi Videobridge settings
|
|
|
|
|
|
|
|
# sets the XMPP domain (default: none)
|
|
|
|
JVB_HOSTNAME=__DOMAIN__
|
|
|
|
|
2022-02-03 03:00:20 +01:00
|
|
|
# sets the hostname of the XMPP server (default: domain if set, 127.0.0.1 otherwise)
|
|
|
|
JVB_HOST=127.0.0.1
|
|
|
|
|
2020-04-11 21:55:05 +02:00
|
|
|
# sets the port of the XMPP server (default: 5275)
|
|
|
|
JVB_PORT=__PORT_COMPONENT__
|
|
|
|
|
|
|
|
# sets the shared secret used to authenticate to the XMPP server
|
|
|
|
JVB_SECRET=__VIDEOBRIDGE_SECRET__
|
|
|
|
|
2022-04-06 08:28:14 +02:00
|
|
|
# add max memory used during VM alocation
|
|
|
|
VIDEOBRIDGE_MAX_MEMORY=__MAX_MEMORY__m
|
|
|
|
|
2020-04-11 21:55:05 +02:00
|
|
|
# adds java system props that are passed to jvb (default are for home and logging config file)
|
2022-02-03 03:00:20 +01:00
|
|
|
JAVA_SYS_PROPS="-Dconfig.file=/etc/__APP__/videobridge/jvb.conf -Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/etc/__APP__ -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=videobridge -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/__APP__ -Djava.util.logging.config.file=/etc/__APP__/videobridge/logging.properties"
|