env.example 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. #
  2. # Basic configuration options
  3. #
  4. # Directory where all configuration will be stored.
  5. CONFIG=~/.jitsi-meet-cfg
  6. # Exposed HTTP port.
  7. HTTP_PORT=8000
  8. # Exposed HTTPS port.
  9. HTTPS_PORT=8443
  10. # System time zone.
  11. TZ=Europe/Amsterdam
  12. # IP address of the Docker host. See the "Running on a LAN environment" section
  13. # in the README.
  14. #DOCKER_HOST_ADDRESS=192.168.1.1
  15. #
  16. # Basic Jigasi configuration options (needed for SIP gateway support)
  17. #
  18. # SIP URI for incoming / outgoing calls.
  19. #JIGASI_SIP_URI=test@sip2sip.info
  20. # Password for the specified SIP account.
  21. #JIGASI_SIP_PASSWORD=passw0rd
  22. # SIP server (use the SIP account domain if in doubt).
  23. #JIGASI_SIP_SERVER=sip2sip.info
  24. #
  25. # Authentication configuration (see README for details)
  26. #
  27. # Enable authentication.
  28. #ENABLE_AUTH=1
  29. # Enable guest access.
  30. #ENABLE_GUESTS=1
  31. #
  32. # Advanced configuration options (you generally don't need to change these)
  33. #
  34. # Internal XMPP domain.
  35. XMPP_DOMAIN=meet.jitsi
  36. # Internal XMPP domain for authenticated services.
  37. XMPP_AUTH_DOMAIN=auth.meet.jitsi
  38. # XMPP domain for the MUC.
  39. XMPP_MUC_DOMAIN=muc.meet.jitsi
  40. # XMPP domain for the internal MUC used for jibri, jigasi and jvb pools.
  41. XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
  42. # XMPP domain for unauthenticated users.
  43. XMPP_GUEST_DOMAIN=guest.meet.jitsi
  44. # MUC for the JVB pool.
  45. JVB_BREWERY_MUC=jvbbrewery
  46. # XMPP user for JVB client connections.
  47. JVB_AUTH_USER=jvb
  48. # XMPP password for JVB client connections.
  49. JVB_AUTH_PASSWORD=passw0rd
  50. # STUN servers used to discover the server's public IP.
  51. JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
  52. # Media port for the Jitsi Videobridge
  53. JVB_PORT=10000
  54. # A comma separated list of APIs to enable when the JVB is started. The default is none.
  55. # See https://github.com/jitsi/jitsi-videobridge/blob/master/doc/rest.md for more information
  56. #JVB_ENABLE_APIS=rest,colibri
  57. # XMPP component password for Jicofo.
  58. JICOFO_COMPONENT_SECRET=s3cr37
  59. # XMPP user for Jicofo client connections. NOTE: this option doesn't currently work due to a bug.
  60. JICOFO_AUTH_USER=focus
  61. # XMPP password for Jicofo client connections.
  62. JICOFO_AUTH_PASSWORD=passw0rd
  63. # XMPP user for Jigasi MUC client connections.
  64. JIGASI_XMPP_USER=jigasi
  65. # XMPP password for Jigasi MUC client connections.
  66. JIGASI_XMPP_PASSWORD=passw0rd
  67. # MUC name for the Jigasi pool.
  68. JIGASI_BREWERY_MUC=jigasibrewery
  69. # Minimum port for media used by Jigasi.
  70. JIGASI_PORT_MIN=20000
  71. # Maximum port for media used by Jigasi.
  72. JIGASI_PORT_MAX=20050