2
0

env.example 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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 component password for Jitsi Videobridge.
  13. JVB_COMPONENT_SECRET=s3cr3t
  14. # STUN servers used to discover the server's public IP.
  15. JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
  16. # XMPP component password for Jicofo.
  17. JICOFO_COMPONENT_SECRET=s3cr37
  18. # XMPP user for Jicofo client connections. You generally don't need to change
  19. # this. NOTE: this option doesn't currently work due to a bug.
  20. JICOFO_AUTH_USER=focus
  21. # XMPP password for Jicofo client connections.
  22. JICOFO_AUTH_PASSWORD=passw0rd
  23. # IP addrss of the Docker host. See the "Running on a LAN environment" section
  24. # in the README.
  25. #DOCKER_HOST_ADDRESS=192.168.1.1