Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

videobridge_config.scalable.example 811B

123456789101112131415161718192021222324
  1. # Jitsi Videobridge settings
  2. # sets the XMPP domain (default: none)
  3. JVB_HOSTNAME=meet.example.com
  4. # sets the hostname of the XMPP server (default: domain if set, localhost otherwise)
  5. JVB_HOST=
  6. # sets the port of the XMPP server (default: 5275)
  7. JVB_PORT=5347
  8. # sets the shared secret used to authenticate to the XMPP server
  9. JVB_SECRET=$VP_SECRET
  10. # extra options to pass to the JVB daemon
  11. JVB_OPTS="--apis=rest,"
  12. # adds java system props that are passed to jvb (default are for home and logging config file)
  13. JAVA_SYS_PROPS=" \
  14. -Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/etc/jitsi \
  15. -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=videobridge \
  16. -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/jitsi \
  17. -Djava.util.logging.config.file=/etc/jitsi/videobridge/logging.properties \
  18. "