env.example 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. # JaaS Components (beta)
  31. # https://jaas.8x8.vc
  32. #
  33. # Enable JaaS Components (hosted Jigasi)
  34. #ENABLE_JAAS_COMPONENTS=0
  35. #
  36. # Let's Encrypt configuration
  37. #
  38. # Enable Let's Encrypt certificate generation
  39. #ENABLE_LETSENCRYPT=1
  40. # Domain for which to generate the certificate
  41. #LETSENCRYPT_DOMAIN=meet.example.com
  42. # E-Mail for receiving important account notifications (mandatory)
  43. #LETSENCRYPT_EMAIL=alice@atlanta.net
  44. # Use the staging server (for avoiding rate limits while testing)
  45. #LETSENCRYPT_USE_STAGING=1
  46. #
  47. # Etherpad integration (for document sharing)
  48. #
  49. # Set etherpad-lite URL in docker local network (uncomment to enable)
  50. #ETHERPAD_URL_BASE=http://etherpad.meet.jitsi:9001
  51. # Set etherpad-lite public URL, including /p/ pad path fragment (uncomment to enable)
  52. #ETHERPAD_PUBLIC_URL=https://etherpad.my.domain/p/
  53. # Name your etherpad instance!
  54. ETHERPAD_TITLE=Video Chat
  55. # The default text of a pad
  56. ETHERPAD_DEFAULT_PAD_TEXT="Welcome to Web Chat!\n\n"
  57. # Name of the skin for etherpad
  58. ETHERPAD_SKIN_NAME=colibris
  59. # Skin variants for etherpad
  60. ETHERPAD_SKIN_VARIANTS="super-light-toolbar super-light-editor light-background full-width-editor"
  61. #
  62. # Basic Jigasi configuration options (needed for SIP gateway support)
  63. #
  64. # SIP URI for incoming / outgoing calls
  65. #JIGASI_SIP_URI=test@sip2sip.info
  66. # Password for the specified SIP account as a clear text
  67. #JIGASI_SIP_PASSWORD=passw0rd
  68. # SIP server (use the SIP account domain if in doubt)
  69. #JIGASI_SIP_SERVER=sip2sip.info
  70. # SIP server port
  71. #JIGASI_SIP_PORT=5060
  72. # SIP server transport
  73. #JIGASI_SIP_TRANSPORT=UDP
  74. #
  75. # Authentication configuration (see handbook for details)
  76. #
  77. # Enable authentication
  78. #ENABLE_AUTH=1
  79. # Enable guest access
  80. #ENABLE_GUESTS=1
  81. # Select authentication type: internal, jwt, ldap or matrix
  82. #AUTH_TYPE=internal
  83. # JWT authentication
  84. #
  85. # Application identifier
  86. #JWT_APP_ID=my_jitsi_app_id
  87. # Application secret known only to your token generator
  88. #JWT_APP_SECRET=my_jitsi_app_secret
  89. # (Optional) Set asap_accepted_issuers as a comma separated list
  90. #JWT_ACCEPTED_ISSUERS=my_web_client,my_app_client
  91. # (Optional) Set asap_accepted_audiences as a comma separated list
  92. #JWT_ACCEPTED_AUDIENCES=my_server1,my_server2
  93. # LDAP authentication (for more information see the Cyrus SASL saslauthd.conf man page)
  94. #
  95. # LDAP url for connection
  96. #LDAP_URL=ldaps://ldap.domain.com/
  97. # LDAP base DN. Can be empty
  98. #LDAP_BASE=DC=example,DC=domain,DC=com
  99. # LDAP user DN. Do not specify this parameter for the anonymous bind
  100. #LDAP_BINDDN=CN=binduser,OU=users,DC=example,DC=domain,DC=com
  101. # LDAP user password. Do not specify this parameter for the anonymous bind
  102. #LDAP_BINDPW=LdapUserPassw0rd
  103. # LDAP filter. Tokens example:
  104. # %1-9 - if the input key is user@mail.domain.com, then %1 is com, %2 is domain and %3 is mail
  105. # %s - %s is replaced by the complete service string
  106. # %r - %r is replaced by the complete realm string
  107. #LDAP_FILTER=(sAMAccountName=%u)
  108. # LDAP authentication method
  109. #LDAP_AUTH_METHOD=bind
  110. # LDAP version
  111. #LDAP_VERSION=3
  112. # LDAP TLS using
  113. #LDAP_USE_TLS=1
  114. # List of SSL/TLS ciphers to allow
  115. #LDAP_TLS_CIPHERS=SECURE256:SECURE128:!AES-128-CBC:!ARCFOUR-128:!CAMELLIA-128-CBC:!3DES-CBC:!CAMELLIA-128-CBC
  116. # Require and verify server certificate
  117. #LDAP_TLS_CHECK_PEER=1
  118. # Path to CA cert file. Used when server certificate verify is enabled
  119. #LDAP_TLS_CACERT_FILE=/etc/ssl/certs/ca-certificates.crt
  120. # Path to CA certs directory. Used when server certificate verify is enabled
  121. #LDAP_TLS_CACERT_DIR=/etc/ssl/certs
  122. # Wether to use starttls, implies LDAPv3 and requires ldap:// instead of ldaps://
  123. # LDAP_START_TLS=1
  124. #
  125. # Security
  126. #
  127. # Set these to strong passwords to avoid intruders from impersonating a service account
  128. # The service(s) won't start unless these are specified
  129. # Running ./gen-passwords.sh will update .env with strong passwords
  130. # You may skip the Jigasi and Jibri passwords if you are not using those
  131. # DO NOT reuse passwords
  132. #
  133. # XMPP password for Jicofo client connections
  134. JICOFO_AUTH_PASSWORD=
  135. # XMPP password for JVB client connections
  136. JVB_AUTH_PASSWORD=
  137. # XMPP password for Jigasi MUC client connections
  138. JIGASI_XMPP_PASSWORD=
  139. # XMPP recorder password for Jibri client connections
  140. JIBRI_RECORDER_PASSWORD=
  141. # XMPP password for Jibri client connections
  142. JIBRI_XMPP_PASSWORD=
  143. #
  144. # Docker Compose options
  145. #
  146. # Container restart policy
  147. #RESTART_POLICY=unless-stopped
  148. # Jitsi image version (useful for local development)
  149. #JITSI_IMAGE_VERSION=latest