env.example 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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. # Public URL for the web service.
  13. #PUBLIC_URL="https://meet.example.com"
  14. # IP address of the Docker host. See the "Running on a LAN environment" section
  15. # in the README.
  16. #DOCKER_HOST_ADDRESS=192.168.1.1
  17. #
  18. # Let's Encrypt configuration
  19. #
  20. # Enable Let's Encrypt certificate generation.
  21. #ENABLE_LETSENCRYPT=1
  22. # Domain for which to generate the certificate.
  23. #LETSENCRYPT_DOMAIN=meet.example.com
  24. # E-Mail for receiving important account notifications (mandatory).
  25. #LETSENCRYPT_EMAIL=alice@atlanta.net
  26. #
  27. # Etherpad integration (for document sharing)
  28. #
  29. # Set etherpad-lite URL (uncomment to enable).
  30. #ETHERPAD_URL_BASE=http://etherpad.meet.jitsi:9001
  31. #
  32. # Basic Jigasi configuration options (needed for SIP gateway support)
  33. #
  34. # SIP URI for incoming / outgoing calls.
  35. #JIGASI_SIP_URI=test@sip2sip.info
  36. # Password for the specified SIP account as a clear text
  37. #JIGASI_SIP_PASSWORD=passw0rd
  38. # SIP server (use the SIP account domain if in doubt).
  39. #JIGASI_SIP_SERVER=sip2sip.info
  40. # SIP server port
  41. #JIGASI_SIP_PORT=5060
  42. # SIP server transport
  43. #JIGASI_SIP_TRANSPORT=UDP
  44. #
  45. # Authentication configuration (see README for details)
  46. #
  47. # Enable authentication.
  48. #ENABLE_AUTH=1
  49. # Enable guest access.
  50. #ENABLE_GUESTS=1
  51. # Select authentication type: internal, jwt or ldap
  52. #AUTH_TYPE=internal
  53. # JWT auuthentication
  54. #
  55. # Application identifier.
  56. #JWT_APP_ID=my_jitsi_app_id
  57. # Application secret known only to your token.
  58. #JWT_APP_SECRET=my_jitsi_app_secret
  59. # (Optional) Set asap_accepted_issuers as a comma separated list.
  60. #JWT_ACCEPTED_ISSUERS=my_web_client,my_app_client
  61. # (Optional) Set asap_accepted_audiences as a comma separated list.
  62. #JWT_ACCEPTED_AUDIENCES=my_server1,my_server2
  63. # LDAP authentication (for more information see the Cyrus SASL saslauthd.conf man page)
  64. #
  65. # LDAP url for connection.
  66. #LDAP_URL=ldaps://ldap.domain.com/
  67. # LDAP base DN. Can be empty
  68. #LDAP_BASE=DC=example,DC=domain,DC=com
  69. # LDAP user DN. Do not specify this parameter for the anonymous bind.
  70. #LDAP_BINDDN=CN=binduser,OU=users,DC=example,DC=domain,DC=com
  71. # LDAP user password. Do not specify this parameter for the anonymous bind.
  72. #LDAP_BINDPW=LdapUserPassw0rd
  73. # LDAP filter. Tokens example:
  74. # %1-9 - if the input key is user@mail.domain.com, then %1 is com, %2 is domain and %3 is mail.
  75. # %s - %s is replaced by the complete service string.
  76. # %r - %r is replaced by the complete realm string.
  77. #LDAP_FILTER=(sAMAccountName=%u)
  78. # LDAP authentication method
  79. #LDAP_AUTH_METHOD=bind
  80. # LDAP version
  81. #LDAP_VERSION=3
  82. # LDAP TLS using
  83. #LDAP_USE_TLS=1
  84. # List of SSL/TLS ciphers to allow.
  85. #LDAP_TLS_CIPHERS=SECURE256:SECURE128:!AES-128-CBC:!ARCFOUR-128:!CAMELLIA-128-CBC:!3DES-CBC:!CAMELLIA-128-CBC
  86. # Require and verify server certificate
  87. #LDAP_TLS_CHECK_PEER=1
  88. # Path to CA cert file. Used when server sertificate verify is enabled.
  89. #LDAP_TLS_CACERT_FILE=/etc/ssl/certs/ca-certificates.crt
  90. # Path to CA certs directory. Used when server sertificate verify is enabled.
  91. #LDAP_TLS_CACERT_DIR=/etc/ssl/certs
  92. #
  93. # Advanced configuration options (you generally don't need to change these)
  94. #
  95. # Internal XMPP domain.
  96. XMPP_DOMAIN=meet.jitsi
  97. # Internal XMPP server
  98. XMPP_SERVER=xmpp.meet.jitsi
  99. # Internal XMPP server URL
  100. XMPP_BOSH_URL_BASE=http://xmpp.meet.jitsi:5280
  101. # Internal XMPP domain for authenticated services.
  102. XMPP_AUTH_DOMAIN=auth.meet.jitsi
  103. # XMPP domain for the MUC.
  104. XMPP_MUC_DOMAIN=muc.meet.jitsi
  105. # XMPP domain for the internal MUC used for jibri, jigasi and jvb pools.
  106. XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
  107. # XMPP domain for unauthenticated users.
  108. XMPP_GUEST_DOMAIN=guest.meet.jitsi
  109. # Custom Prosody modules for XMPP_DOMAIN (comma separated)
  110. XMPP_MODULES=
  111. # Custom Prosody modules for MUC component (comma separated)
  112. XMPP_MUC_MODULES=
  113. # Custom Prosody modules for internal MUC component (comma separated)
  114. XMPP_INTERNAL_MUC_MODULES=
  115. # MUC for the JVB pool.
  116. JVB_BREWERY_MUC=jvbbrewery
  117. # XMPP user for JVB client connections.
  118. JVB_AUTH_USER=jvb
  119. # XMPP password for JVB client connections.
  120. JVB_AUTH_PASSWORD=passw0rd
  121. # STUN servers used to discover the server's public IP.
  122. JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
  123. # Media port for the Jitsi Videobridge
  124. JVB_PORT=10000
  125. # TCP Fallback for Jitsi Videobridge for when UDP isn't available
  126. JVB_TCP_HARVESTER_DISABLED=true
  127. JVB_TCP_PORT=4443
  128. # A comma separated list of APIs to enable when the JVB is started. The default is none.
  129. # See https://github.com/jitsi/jitsi-videobridge/blob/master/doc/rest.md for more information
  130. #JVB_ENABLE_APIS=rest,colibri
  131. # XMPP component password for Jicofo.
  132. JICOFO_COMPONENT_SECRET=s3cr37
  133. # XMPP user for Jicofo client connections. NOTE: this option doesn't currently work due to a bug.
  134. JICOFO_AUTH_USER=focus
  135. # XMPP password for Jicofo client connections.
  136. JICOFO_AUTH_PASSWORD=passw0rd
  137. # XMPP user for Jigasi MUC client connections.
  138. JIGASI_XMPP_USER=jigasi
  139. # XMPP password for Jigasi MUC client connections.
  140. JIGASI_XMPP_PASSWORD=passw0rd
  141. # MUC name for the Jigasi pool.
  142. JIGASI_BREWERY_MUC=jigasibrewery
  143. # Minimum port for media used by Jigasi.
  144. JIGASI_PORT_MIN=20000
  145. # Maximum port for media used by Jigasi.
  146. JIGASI_PORT_MAX=20050
  147. # Enable SDES srtp
  148. #JIGASI_ENABLE_SDES_SRTP=1
  149. # Keepalive method
  150. #JIGASI_SIP_KEEP_ALIVE_METHOD=OPTIONS
  151. # Health-check extension
  152. #JIGASI_HEALTH_CHECK_SIP_URI=keepalive
  153. # Health-check interval
  154. #JIGASI_HEALTH_CHECK_INTERVAL=300000
  155. #
  156. # Enable Jigasi transcription.
  157. #ENABLE_TRANSCRIPTIONS=1
  158. # Jigasi will recordord an audio when transcriber is on. Default false.
  159. #JIGASI_TRANSCRIBER_RECORD_AUDIO=true
  160. # Jigasi will send transcribed text to the chat when transcriber is on. Default false.
  161. #JIGASI_TRANSCRIBER_SEND_TXT=true
  162. # Jigasi post to the chat an url with transcription file. Default false.
  163. #JIGASI_TRANSCRIBER_ADVERTISE_URL=true
  164. # Credentials for connect to Cloud Google API from Jigasi. Path located inside the container.
  165. # Please read https://cloud.google.com/text-to-speech/docs/quickstart-protocol
  166. # section "Before you begin" from 1 to 5 paragraph. Copy the key on
  167. # the docker host to ${CONFIG}/jigasi/key.json and to enable this setting:
  168. #GOOGLE_APPLICATION_CREDENTIALS=/config/key.json
  169. # Enable recording
  170. #ENABLE_RECORDING=1
  171. # XMPP domain for the jibri recorder
  172. XMPP_RECORDER_DOMAIN=recorder.meet.jitsi
  173. # XMPP recorder user for Jibri client connections.
  174. JIBRI_RECORDER_USER=recorder
  175. # XMPP recorder password for Jibri client connections.
  176. JIBRI_RECORDER_PASSWORD=passw0rd
  177. # Directory for recordings inside Jibri container.
  178. JIBRI_RECORDING_DIR=/config/recordings
  179. # The finalizing script. Will run after recording is complete.
  180. JIBRI_FINALIZE_RECORDING_SCRIPT_PATH=/config/finalize.sh
  181. # XMPP user for Jibri client connections.
  182. JIBRI_XMPP_USER=jibri
  183. # XMPP password for Jibri client connections.
  184. JIBRI_XMPP_PASSWORD=passw0rd
  185. # MUC name for the Jibri pool.
  186. JIBRI_BREWERY_MUC=jibribrewery
  187. # MUC connection timeout
  188. JIBRI_PENDING_TIMEOUT=90
  189. # When jibri gets a request to start a service for a room, the room
  190. # jid will look like: roomName@optional.prefixes.subdomain.xmpp_domain
  191. # We'll build the url for the call by transforming that into:
  192. # https://xmpp_domain/subdomain/roomName
  193. # So if there are any prefixes in the jid (like jitsi meet, which
  194. # has its participants join a muc at conference.xmpp_domain) then
  195. # list that prefix here so it can be stripped out to generate
  196. # the call url correctly.
  197. JIBRI_STRIP_DOMAIN_JID=muc
  198. # Directory for logs inside Jibri container.
  199. JIBRI_LOGS_DIR=/config/logs
  200. # Disable HTTPS. This can be useful if TLS connections are going to be handled outside of this setup.
  201. #DISABLE_HTTPS=1
  202. # Redirects HTTP traffic to HTTPS. Only works with the standard HTTPS port (443).
  203. #ENABLE_HTTP_REDIRECT=1