2
0

env.example 1.3 KB

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