env.example 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. # SIP URI for incoming / outgoing calls
  40. #JIGASI_SIP_URI=test@sip2sip.info
  41. # Password for the specified SIP account
  42. #JIGASI_SIP_PASSWORD=passw0rd
  43. # SIP server (use the SIP account domain if in doubt)
  44. #JIGASI_SIP_SERVER=sip2sip.info
  45. # XMPP user for Jigasi MUC client connections
  46. JIGASI_XMPP_USER=jigasi
  47. # XMPP password for Jigasi MUC client connections
  48. JIGASI_XMPP_PASSWORD=passw0rd
  49. # MUC name for the Jigasi pool
  50. JIGASI_BREWERY_MUC=jigasibrewery
  51. # Minimum port for media used by Jigasi
  52. JIGASI_PORT_MIN=20000
  53. # Maximum port for media used by Jigasi
  54. JIGASI_PORT_MAX=20050
  55. # IP address of the Docker host. See the "Running on a LAN environment" section
  56. # in the README.
  57. #DOCKER_HOST_ADDRESS=192.168.1.1