您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

jicofo_config.scalable.example 1.0KB

1234567891011121314151617181920212223242526272829303132
  1. # Jitsi Conference Focus settings
  2. # sets the host name of the XMPP server
  3. JICOFO_HOST=localhost
  4. # sets the XMPP domain (default: none)
  5. JICOFO_HOSTNAME=meet.example.com
  6. # sets the secret used to authenticate as an XMPP component
  7. JICOFO_SECRET=$JICOFO_SECRET
  8. # sets the port to use for the XMPP component connection
  9. JICOFO_PORT=5347
  10. # sets the XMPP domain name to use for XMPP user logins
  11. JICOFO_AUTH_DOMAIN=auth.meet.example.com
  12. # sets the username to use for XMPP user logins
  13. JICOFO_AUTH_USER=focus
  14. # sets the password to use for XMPP user logins
  15. JICOFO_AUTH_PASSWORD=$JICOFO_PASSWORD
  16. # extra options to pass to the jicofo daemon
  17. JICOFO_OPTS=""
  18. # adds java system props that are passed to jicofo (default are for home and logging config file)
  19. JAVA_SYS_PROPS=" \
  20. -Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/etc/jitsi \
  21. -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=jicofo \
  22. -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/jitsi \
  23. -Djava.util.logging.config.file=/etc/jitsi/jicofo/logging.properties \
  24. "