env.example 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. # Let's Encrypt configuration
  17. #
  18. # Enable Let's Encrypt certificate generation.
  19. #ENABLE_LETSENCRYPT=1
  20. # Domain for which to generate the certificate.
  21. #LETSENCRYPT_DOMAIN=meet.example.com
  22. # E-Mail for receiving important account notifications (mandatory).
  23. #LETSENCRYPT_EMAIL=alice@atlanta.net
  24. #
  25. # Basic Jigasi configuration options (needed for SIP gateway support)
  26. #
  27. # SIP URI for incoming / outgoing calls.
  28. #JIGASI_SIP_URI=test@sip2sip.info
  29. # Password for the specified SIP account as a clear text
  30. #JIGASI_SIP_PASSWORD=passw0rd
  31. # SIP server (use the SIP account domain if in doubt).
  32. #JIGASI_SIP_SERVER=sip2sip.info
  33. # SIP server port
  34. #JIGASI_SIP_PORT=5060
  35. # SIP server transport
  36. #JIGASI_SIP_TRANSPORT=UDP
  37. #
  38. # Authentication configuration (see README for details)
  39. #
  40. # Enable authentication.
  41. #ENABLE_AUTH=1
  42. # Enable guest access.
  43. #ENABLE_GUESTS=1
  44. #
  45. # Advanced configuration options (you generally don't need to change these)
  46. #
  47. # Internal XMPP domain.
  48. XMPP_DOMAIN=meet.jitsi
  49. # Internal XMPP domain for authenticated services.
  50. XMPP_AUTH_DOMAIN=auth.meet.jitsi
  51. # XMPP domain for the MUC.
  52. XMPP_MUC_DOMAIN=muc.meet.jitsi
  53. # XMPP domain for the internal MUC used for jibri, jigasi and jvb pools.
  54. XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
  55. # XMPP domain for unauthenticated users.
  56. XMPP_GUEST_DOMAIN=guest.meet.jitsi
  57. # MUC for the JVB pool.
  58. JVB_BREWERY_MUC=jvbbrewery
  59. # XMPP user for JVB client connections.
  60. JVB_AUTH_USER=jvb
  61. # XMPP password for JVB client connections.
  62. JVB_AUTH_PASSWORD=passw0rd
  63. # STUN servers used to discover the server's public IP.
  64. JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
  65. # Media port for the Jitsi Videobridge
  66. JVB_PORT=10000
  67. # TCP Fallback for Jitsi Videobridge for when UDP isn't available
  68. JVB_TCP_HARVESTER_DISABLED=true
  69. JVB_TCP_PORT=4443
  70. # A comma separated list of APIs to enable when the JVB is started. The default is none.
  71. # See https://github.com/jitsi/jitsi-videobridge/blob/master/doc/rest.md for more information
  72. #JVB_ENABLE_APIS=rest,colibri
  73. # XMPP component password for Jicofo.
  74. JICOFO_COMPONENT_SECRET=s3cr37
  75. # XMPP user for Jicofo client connections. NOTE: this option doesn't currently work due to a bug.
  76. JICOFO_AUTH_USER=focus
  77. # XMPP password for Jicofo client connections.
  78. JICOFO_AUTH_PASSWORD=passw0rd
  79. # XMPP user for Jigasi MUC client connections.
  80. JIGASI_XMPP_USER=jigasi
  81. # XMPP password for Jigasi MUC client connections.
  82. JIGASI_XMPP_PASSWORD=passw0rd
  83. # MUC name for the Jigasi pool.
  84. JIGASI_BREWERY_MUC=jigasibrewery
  85. # Minimum port for media used by Jigasi.
  86. JIGASI_PORT_MIN=20000
  87. # Maximum port for media used by Jigasi.
  88. JIGASI_PORT_MAX=20050
  89. # Disable HTTPS. This can be useful if TLS connections are going to be handled outside of this setup.
  90. #DISABLE_HTTPS=1
  91. # Redirects HTTP traffic to HTTPS. Only works with the standard HTTPS port (443).
  92. #ENABLE_HTTP_REDIRECT=1