env.example 5.3 KB

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