env.example 8.6 KB

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