env.example 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Directory where all configuration will be stored.
  2. CONFIG=~/.jitsi-meet-cfg
  3. # System time zone.
  4. TZ=Europe/Amsterdam
  5. # Internal XMPP domain. You generally don't need to change this.
  6. XMPP_DOMAIN=meet.jitsi
  7. # Internal XMPP domain for authenticated services. You generally don't need to
  8. # change this.
  9. XMPP_AUTH_DOMAIN=auth.meet.jitsi
  10. # XMPP BOSH URL base. You generally don't need to change this.
  11. XMPP_BOSH_URL_BASE=http://xmpp.meet.jitsi:5280
  12. # XMPP domain for the MUC. You generally don't need to change this.
  13. XMPP_MUC_DOMAIN=muc.meet.jitsi
  14. # XMPP component password for Jitsi Videobridge.
  15. JVB_COMPONENT_SECRET=s3cr3t
  16. # STUN servers used to discover the server's public IP.
  17. JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
  18. # XMPP component password for Jicofo.
  19. JICOFO_COMPONENT_SECRET=s3cr37
  20. # XMPP user for Jicofo client connections. You generally don't need to change
  21. # this. NOTE: this option doesn't currently work due to a bug.
  22. JICOFO_AUTH_USER=focus
  23. # XMPP password for Jicofo client connections.
  24. JICOFO_AUTH_PASSWORD=passw0rd
  25. # IP address of the Docker host. See the "Running on a LAN environment" section
  26. # in the README.
  27. #DOCKER_HOST_ADDRESS=192.168.1.1