env.j2 6.1 KB

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