env.example 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 domain for the internal MUC used for jibri, jigasi and jvb pools.
  19. # You generally don't need to change this.
  20. XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
  21. # MUC for the JVB pool. You generally don't need to change this.
  22. JVB_BREWERY_MUC=jvbbrewery
  23. # XMPP user for JVB client connections. You generally don't need to change
  24. # this.
  25. JVB_AUTH_USER=jvb
  26. # XMPP password for JVB client connections.
  27. JVB_AUTH_PASSWORD=passw0rd
  28. # STUN servers used to discover the server's public IP.
  29. JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
  30. # Media port for the Jitsi Videobridge
  31. JVB_PORT=10000
  32. # XMPP component password for Jicofo.
  33. JICOFO_COMPONENT_SECRET=s3cr37
  34. # XMPP user for Jicofo client connections. You generally don't need to change
  35. # this. NOTE: this option doesn't currently work due to a bug.
  36. JICOFO_AUTH_USER=focus
  37. # XMPP password for Jicofo client connections.
  38. JICOFO_AUTH_PASSWORD=passw0rd
  39. # IP address of the Docker host. See the "Running on a LAN environment" section
  40. # in the README.
  41. #DOCKER_HOST_ADDRESS=192.168.1.1