env.example 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. # shellcheck disable=SC2034
  2. ################################################################################
  3. ################################################################################
  4. # Welcome to the Jitsi Meet Docker setup!
  5. #
  6. # This sample .env file contains some basic options to get you started.
  7. # The full options reference can be found here:
  8. # https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker
  9. ################################################################################
  10. ################################################################################
  11. #
  12. # Basic configuration options
  13. #
  14. # Directory where all configuration will be stored
  15. CONFIG=~/.jitsi-meet-cfg
  16. # Exposed HTTP port
  17. HTTP_PORT=8000
  18. # Exposed HTTPS port
  19. HTTPS_PORT=8443
  20. # System time zone
  21. TZ=UTC
  22. # Public URL for the web service (required)
  23. #PUBLIC_URL=https://meet.example.com
  24. # Media IP addresses to advertise by the JVB
  25. # This setting deprecates DOCKER_HOST_ADDRESS, and supports a comma separated list of IPs
  26. # See the "Running behind NAT or on a LAN environment" section in the Handbook:
  27. # https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker#running-behind-nat-or-on-a-lan-environment
  28. #JVB_ADVERTISE_IPS=192.168.1.1,1.2.3.4
  29. #
  30. # Memory limits for Java components
  31. #
  32. #JICOFO_MAX_MEMORY=3072m
  33. #VIDEOBRIDGE_MAX_MEMORY=3072m
  34. #
  35. # JaaS Components (beta)
  36. # https://jaas.8x8.vc
  37. #
  38. # Enable JaaS Components (hosted Jigasi)
  39. # NOTE: if Let's Encrypt is enabled a JaaS account will be automatically created, using the provided email in LETSENCRYPT_EMAIL
  40. #ENABLE_JAAS_COMPONENTS=0
  41. #
  42. # Let's Encrypt configuration
  43. #
  44. # Enable Let's Encrypt certificate generation
  45. #ENABLE_LETSENCRYPT=1
  46. # Domain for which to generate the certificate
  47. #LETSENCRYPT_DOMAIN=meet.example.com
  48. # E-Mail for receiving important account notifications (mandatory)
  49. #LETSENCRYPT_EMAIL=alice@atlanta.net
  50. # Use the staging server (for avoiding rate limits while testing)
  51. #LETSENCRYPT_USE_STAGING=1
  52. #
  53. # Etherpad integration (for document sharing)
  54. #
  55. # Set the etherpad-lite URL in the docker local network (uncomment to enable)
  56. #ETHERPAD_URL_BASE=http://etherpad.meet.jitsi:9001
  57. # Set etherpad-lite public URL, including /p/ pad path fragment (uncomment to enable)
  58. #ETHERPAD_PUBLIC_URL=https://etherpad.my.domain/p/
  59. #
  60. # Whiteboard integration
  61. #
  62. # Set the excalidraw-backend URL in the docker local network (uncomment to enable)
  63. #WHITEBOARD_COLLAB_SERVER_URL_BASE=http://whiteboard.meet.jitsi
  64. # Set the excalidraw-backend public URL (uncomment to enable)
  65. #WHITEBOARD_COLLAB_SERVER_PUBLIC_URL=https://whiteboard.meet.my.domain
  66. #
  67. # Basic Jigasi configuration options (needed for SIP gateway support)
  68. #
  69. # SIP URI for incoming / outgoing calls
  70. #JIGASI_SIP_URI=test@sip2sip.info
  71. # Password for the specified SIP account as a clear text
  72. #JIGASI_SIP_PASSWORD=passw0rd
  73. # SIP server (use the SIP account domain if in doubt)
  74. #JIGASI_SIP_SERVER=sip2sip.info
  75. # SIP server port
  76. #JIGASI_SIP_PORT=5060
  77. # SIP server transport
  78. #JIGASI_SIP_TRANSPORT=UDP
  79. #
  80. # Authentication configuration (see handbook for details)
  81. #
  82. # Enable authentication
  83. #ENABLE_AUTH=1
  84. # Enable guest access
  85. #ENABLE_GUESTS=1
  86. # Select authentication type: internal, jwt, ldap or matrix
  87. #AUTH_TYPE=internal
  88. # JWT authentication
  89. #
  90. # Application identifier
  91. #JWT_APP_ID=my_jitsi_app_id
  92. # Application secret known only to your token generator
  93. #JWT_APP_SECRET=my_jitsi_app_secret
  94. # (Optional) Set asap_accepted_issuers as a comma separated list
  95. #JWT_ACCEPTED_ISSUERS=my_web_client,my_app_client
  96. # (Optional) Set asap_accepted_audiences as a comma separated list
  97. #JWT_ACCEPTED_AUDIENCES=my_server1,my_server2
  98. # LDAP authentication (for more information see the Cyrus SASL saslauthd.conf man page)
  99. #
  100. # LDAP url for connection
  101. #LDAP_URL=ldaps://ldap.domain.com/
  102. # LDAP base DN. Can be empty
  103. #LDAP_BASE=DC=example,DC=domain,DC=com
  104. # LDAP user DN. Do not specify this parameter for the anonymous bind
  105. #LDAP_BINDDN=CN=binduser,OU=users,DC=example,DC=domain,DC=com
  106. # LDAP user password. Do not specify this parameter for the anonymous bind
  107. #LDAP_BINDPW=LdapUserPassw0rd
  108. # LDAP filter. Tokens example:
  109. # %1-9 - if the input key is user@mail.domain.com, then %1 is com, %2 is domain and %3 is mail
  110. # %s - %s is replaced by the complete service string
  111. # %r - %r is replaced by the complete realm string
  112. #LDAP_FILTER=(sAMAccountName=%u)
  113. # LDAP authentication method
  114. #LDAP_AUTH_METHOD=bind
  115. # LDAP version
  116. #LDAP_VERSION=3
  117. # LDAP TLS using
  118. #LDAP_USE_TLS=1
  119. # List of SSL/TLS ciphers to allow
  120. #LDAP_TLS_CIPHERS=SECURE256:SECURE128:!AES-128-CBC:!ARCFOUR-128:!CAMELLIA-128-CBC:!3DES-CBC:!CAMELLIA-128-CBC
  121. # Require and verify server certificate
  122. #LDAP_TLS_CHECK_PEER=1
  123. # Path to CA cert file. Used when server certificate verify is enabled
  124. #LDAP_TLS_CACERT_FILE=/etc/ssl/certs/ca-certificates.crt
  125. # Path to CA certs directory. Used when server certificate verify is enabled
  126. #LDAP_TLS_CACERT_DIR=/etc/ssl/certs
  127. # Wether to use starttls, implies LDAPv3 and requires ldap:// instead of ldaps://
  128. # LDAP_START_TLS=1
  129. #
  130. # Security
  131. #
  132. # Set these to strong passwords to avoid intruders from impersonating a service account
  133. # The service(s) won't start unless these are specified
  134. # Running ./gen-passwords.sh will update .env with strong passwords
  135. # You may skip the Jigasi and Jibri passwords if you are not using those
  136. # DO NOT reuse passwords
  137. #
  138. # XMPP password for Jicofo client connections
  139. JICOFO_AUTH_PASSWORD=
  140. # XMPP password for JVB client connections
  141. JVB_AUTH_PASSWORD=
  142. # XMPP password for Jigasi MUC client connections
  143. JIGASI_XMPP_PASSWORD=
  144. # XMPP recorder password for Jibri client connections
  145. JIBRI_RECORDER_PASSWORD=
  146. # XMPP password for Jibri client connections
  147. JIBRI_XMPP_PASSWORD=
  148. #
  149. # Docker Compose options
  150. #
  151. # Container restart policy
  152. #RESTART_POLICY=unless-stopped
  153. # Jitsi image version (useful for local development)
  154. #JITSI_IMAGE_VERSION=latest