2020-04-11 21:55:05 +02:00
|
|
|
# Jitsi Conference Focus settings
|
|
|
|
# sets the host name of the XMPP server
|
2020-06-18 16:07:33 +02:00
|
|
|
JICOFO_HOST=127.0.0.1
|
2020-04-11 21:55:05 +02:00
|
|
|
|
|
|
|
# sets the XMPP domain (default: none)
|
|
|
|
JICOFO_HOSTNAME=__DOMAIN__
|
|
|
|
|
2022-02-03 03:00:20 +01:00
|
|
|
# sets the XMPP domain name to use for XMPP user logins
|
|
|
|
JICOFO_AUTH_DOMAIN=auth.__DOMAIN__
|
2020-04-11 21:55:05 +02:00
|
|
|
|
|
|
|
# sets the username to use for XMPP user logins
|
|
|
|
JICOFO_AUTH_USER=__FOCUS_USER__
|
|
|
|
|
|
|
|
# sets the password to use for XMPP user logins
|
|
|
|
JICOFO_AUTH_PASSWORD=__FOCUS_PASSWORD__
|
|
|
|
|
|
|
|
# extra options to pass to the jicofo daemon
|
|
|
|
JICOFO_OPTS=""
|
|
|
|
|
2022-04-06 08:28:14 +02:00
|
|
|
# set the max memory used during VM alocation
|
|
|
|
JICOFO_MAX_MEMORY=__MAX_MEMORY__m
|
|
|
|
|
2020-04-11 21:55:05 +02:00
|
|
|
# adds java system props that are passed to jicofo (default are for home and logging config file)
|
2022-02-03 03:00:20 +01:00
|
|
|
JAVA_SYS_PROPS="-Dconfig.file=/etc/__APP__/jicofo/jicofo.conf -Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/etc/__APP__ -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=jicofo -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/__APP__ -Djava.util.logging.config.file=/etc/__APP__/jicofo/logging.properties"
|