summarylogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorcelogeek2020-07-17 17:27:20 +0200
committercelogeek2020-07-17 17:27:20 +0200
commit6da795ccee4f41deca38ac4ac5f87db7f602e8e6 (patch)
treeb2573a1f36abd8ae0822f5b2155634e5cbfb4ea1 /config
downloadaur-6da795ccee4f41deca38ac4ac5f87db7f602e8e6.tar.gz
init project
Diffstat (limited to 'config')
-rw-r--r--config32
1 files changed, 32 insertions, 0 deletions
diff --git a/config b/config
new file mode 100644
index 000000000000..9abeda92a5d1
--- /dev/null
+++ b/config
@@ -0,0 +1,32 @@
+# Jitsi Conference Focus settings
+# sets the host name of the XMPP server
+JICOFO_HOST=localhost
+
+# sets the XMPP domain (default: none)
+JICOFO_HOSTNAME=jitsi-meet.example.org
+
+# sets the secret used to authenticate as an XMPP component
+JICOFO_SECRET=__PASSWORD_FOR_COMPONENT_focus.jitsi-meet.example.org__
+
+# sets the port to use for the XMPP component connection
+JICOFO_PORT=5347
+
+# sets the XMPP domain name to use for XMPP user logins
+JICOFO_AUTH_DOMAIN=auth.jitsi-meet.example.org
+
+# sets the username to use for XMPP user logins
+JICOFO_AUTH_USER=focus
+
+# sets the password to use for XMPP user logins
+JICOFO_AUTH_PASSWORD=__PASSWORD_FOR_USER_focus@auth.jitsi-meet.example.org__
+
+# extra options to pass to the jicofo daemon
+JICOFO_OPTS=""
+
+# adds java system props that are passed to jicofo (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=jicofo-nightly\
+ -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/jicofo-nightly\
+ -Djava.util.logging.config.file=/etc/jicofo-nightly/logging.properties\
+"