env.example 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. # shellcheck disable=SC2034
  2. # Security
  3. #
  4. # Set these to strong passwords to avoid intruders from impersonating a service account
  5. # The service(s) won't start unless these are specified
  6. # Running ./gen-passwords.sh will update .env with strong passwords
  7. # You may skip the Jigasi and Jibri passwords if you are not using those
  8. # DO NOT reuse passwords
  9. #
  10. # XMPP password for Jicofo client connections
  11. JICOFO_AUTH_PASSWORD=
  12. # XMPP password for JVB client connections
  13. JVB_AUTH_PASSWORD=
  14. # XMPP password for Jigasi MUC client connections
  15. JIGASI_XMPP_PASSWORD=
  16. # XMPP recorder password for Jibri client connections
  17. JIBRI_RECORDER_PASSWORD=
  18. # XMPP password for Jibri client connections
  19. JIBRI_XMPP_PASSWORD=
  20. #
  21. # Basic configuration options
  22. #
  23. # Directory where all configuration will be stored
  24. CONFIG=~/.jitsi-meet-cfg
  25. # Exposed HTTP port
  26. HTTP_PORT=8000
  27. # Exposed HTTPS port
  28. HTTPS_PORT=8443
  29. # System time zone
  30. TZ=UTC
  31. # Public URL for the web service (required)
  32. #PUBLIC_URL=https://meet.example.com
  33. # IP address of the Docker host
  34. # See the "Running behind NAT or on a LAN environment" section in the Handbook:
  35. # https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker#running-behind-nat-or-on-a-lan-environment
  36. #DOCKER_HOST_ADDRESS=192.168.1.1
  37. # Control whether the lobby feature should be enabled or not
  38. #ENABLE_LOBBY=1
  39. # Control whether the A/V moderation should be enabled or not
  40. #ENABLE_AV_MODERATION=1
  41. # Show a prejoin page before entering a conference
  42. #ENABLE_PREJOIN_PAGE=0
  43. # Enable the welcome page
  44. #ENABLE_WELCOME_PAGE=1
  45. # Enable the close page
  46. #ENABLE_CLOSE_PAGE=0
  47. # Disable measuring of audio levels
  48. #DISABLE_AUDIO_LEVELS=0
  49. # Enable noisy mic detection
  50. #ENABLE_NOISY_MIC_DETECTION=1
  51. # Enable breakout rooms
  52. #ENABLE_BREAKOUT_ROOMS=1
  53. #
  54. # Let's Encrypt configuration
  55. #
  56. # Enable Let's Encrypt certificate generation
  57. #ENABLE_LETSENCRYPT=1
  58. # Domain for which to generate the certificate
  59. #LETSENCRYPT_DOMAIN=meet.example.com
  60. # E-Mail for receiving important account notifications (mandatory)
  61. #LETSENCRYPT_EMAIL=alice@atlanta.net
  62. # Use the staging server (for avoiding rate limits while testing)
  63. #LETSENCRYPT_USE_STAGING=1
  64. #
  65. # Etherpad integration (for document sharing)
  66. #
  67. # Set etherpad-lite URL in docker local network (uncomment to enable)
  68. #ETHERPAD_URL_BASE=http://etherpad.meet.jitsi:9001
  69. # Set etherpad-lite public URL, including /p/ pad path fragment (uncomment to enable)
  70. #ETHERPAD_PUBLIC_URL=https://etherpad.my.domain/p/
  71. # Name your etherpad instance!
  72. ETHERPAD_TITLE=Video Chat
  73. # The default text of a pad
  74. ETHERPAD_DEFAULT_PAD_TEXT="Welcome to Web Chat!\n\n"
  75. # Name of the skin for etherpad
  76. ETHERPAD_SKIN_NAME=colibris
  77. # Skin variants for etherpad
  78. ETHERPAD_SKIN_VARIANTS="super-light-toolbar super-light-editor light-background full-width-editor"
  79. #
  80. # Basic Jigasi configuration options (needed for SIP gateway support)
  81. #
  82. # SIP URI for incoming / outgoing calls
  83. #JIGASI_SIP_URI=test@sip2sip.info
  84. # Password for the specified SIP account as a clear text
  85. #JIGASI_SIP_PASSWORD=passw0rd
  86. # SIP server (use the SIP account domain if in doubt)
  87. #JIGASI_SIP_SERVER=sip2sip.info
  88. # SIP server port
  89. #JIGASI_SIP_PORT=5060
  90. # SIP server transport
  91. #JIGASI_SIP_TRANSPORT=UDP
  92. #
  93. # Authentication configuration (see handbook for details)
  94. #
  95. # Enable authentication
  96. #ENABLE_AUTH=1
  97. # Enable guest access
  98. #ENABLE_GUESTS=1
  99. # Select authentication type: internal, jwt, ldap or matrix
  100. #AUTH_TYPE=internal
  101. # JWT authentication
  102. #
  103. # Application identifier
  104. #JWT_APP_ID=my_jitsi_app_id
  105. # Application secret known only to your token generator
  106. #JWT_APP_SECRET=my_jitsi_app_secret
  107. # (Optional) Set asap_accepted_issuers as a comma separated list
  108. #JWT_ACCEPTED_ISSUERS=my_web_client,my_app_client
  109. # (Optional) Set asap_accepted_audiences as a comma separated list
  110. #JWT_ACCEPTED_AUDIENCES=my_server1,my_server2
  111. # LDAP authentication (for more information see the Cyrus SASL saslauthd.conf man page)
  112. #
  113. # LDAP url for connection
  114. #LDAP_URL=ldaps://ldap.domain.com/
  115. # LDAP base DN. Can be empty
  116. #LDAP_BASE=DC=example,DC=domain,DC=com
  117. # LDAP user DN. Do not specify this parameter for the anonymous bind
  118. #LDAP_BINDDN=CN=binduser,OU=users,DC=example,DC=domain,DC=com
  119. # LDAP user password. Do not specify this parameter for the anonymous bind
  120. #LDAP_BINDPW=LdapUserPassw0rd
  121. # LDAP filter. Tokens example:
  122. # %1-9 - if the input key is user@mail.domain.com, then %1 is com, %2 is domain and %3 is mail
  123. # %s - %s is replaced by the complete service string
  124. # %r - %r is replaced by the complete realm string
  125. #LDAP_FILTER=(sAMAccountName=%u)
  126. # LDAP authentication method
  127. #LDAP_AUTH_METHOD=bind
  128. # LDAP version
  129. #LDAP_VERSION=3
  130. # LDAP TLS using
  131. #LDAP_USE_TLS=1
  132. # List of SSL/TLS ciphers to allow
  133. #LDAP_TLS_CIPHERS=SECURE256:SECURE128:!AES-128-CBC:!ARCFOUR-128:!CAMELLIA-128-CBC:!3DES-CBC:!CAMELLIA-128-CBC
  134. # Require and verify server certificate
  135. #LDAP_TLS_CHECK_PEER=1
  136. # Path to CA cert file. Used when server certificate verify is enabled
  137. #LDAP_TLS_CACERT_FILE=/etc/ssl/certs/ca-certificates.crt
  138. # Path to CA certs directory. Used when server certificate verify is enabled
  139. #LDAP_TLS_CACERT_DIR=/etc/ssl/certs
  140. # Wether to use starttls, implies LDAPv3 and requires ldap:// instead of ldaps://
  141. # LDAP_START_TLS=1
  142. # Matrix authentication (for more information see the documention of the "Prosody Auth Matrix User Verification" at https://github.com/matrix-org/prosody-mod-auth-matrix-user-verification)
  143. #
  144. # Base URL to the matrix user verification service (without ending slash)
  145. #MATRIX_UVS_URL=https://uvs.example.com:3000
  146. # (optional) The issuer of the auth token to be passed through. Must match what is being set as `iss` in the JWT. Defaut value is "issuer".
  147. #MATRIX_UVS_ISSUER=issuer
  148. # (optional) user verification service auth token, if authentication enabled
  149. #MATRIX_UVS_AUTH_TOKEN=changeme
  150. # (optional) Make Matrix room moderators owners of the Prosody room.
  151. #MATRIX_UVS_SYNC_POWER_LEVELS=1
  152. #
  153. # Advanced configuration options (you generally don't need to change these)
  154. #
  155. # Internal XMPP domain
  156. XMPP_DOMAIN=meet.jitsi
  157. # Internal XMPP server
  158. XMPP_SERVER=xmpp.meet.jitsi
  159. # Internal XMPP server URL
  160. XMPP_BOSH_URL_BASE=http://xmpp.meet.jitsi:5280
  161. # Internal XMPP domain for authenticated services
  162. XMPP_AUTH_DOMAIN=auth.meet.jitsi
  163. # XMPP domain for the MUC
  164. XMPP_MUC_DOMAIN=muc.meet.jitsi
  165. # XMPP domain for the internal MUC used for jibri, jigasi and jvb pools
  166. XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
  167. # XMPP domain for unauthenticated users
  168. XMPP_GUEST_DOMAIN=guest.meet.jitsi
  169. # Comma separated list of domains for cross domain policy or "true" to allow all
  170. # The PUBLIC_URL is always allowed
  171. #XMPP_CROSS_DOMAIN=true
  172. # Custom Prosody modules for XMPP_DOMAIN (comma separated)
  173. XMPP_MODULES=
  174. # Custom Prosody modules for MUC component (comma separated)
  175. XMPP_MUC_MODULES=
  176. # Custom Prosody modules for internal MUC component (comma separated)
  177. XMPP_INTERNAL_MUC_MODULES=
  178. # MUC for the JVB pool
  179. JVB_BREWERY_MUC=jvbbrewery
  180. # XMPP user for JVB client connections
  181. JVB_AUTH_USER=jvb
  182. # STUN servers used to discover the server's public IP
  183. JVB_STUN_SERVERS=meet-jit-si-turnrelay.jitsi.net:443
  184. # Media port for the Jitsi Videobridge
  185. JVB_PORT=10000
  186. # XMPP user for Jicofo client connections.
  187. # NOTE: this option doesn't currently work due to a bug
  188. JICOFO_AUTH_USER=focus
  189. # Base URL of Jicofo's reservation REST API
  190. #JICOFO_RESERVATION_REST_BASE_URL=http://reservation.example.com
  191. # Enable Jicofo's health check REST API (http://<jicofo_base_url>:8888/about/health)
  192. #JICOFO_ENABLE_HEALTH_CHECKS=true
  193. # XMPP user for Jigasi MUC client connections
  194. JIGASI_XMPP_USER=jigasi
  195. # MUC name for the Jigasi pool
  196. JIGASI_BREWERY_MUC=jigasibrewery
  197. # Minimum port for media used by Jigasi
  198. JIGASI_PORT_MIN=20000
  199. # Maximum port for media used by Jigasi
  200. JIGASI_PORT_MAX=20050
  201. # Enable SDES srtp
  202. #JIGASI_ENABLE_SDES_SRTP=1
  203. # Keepalive method
  204. #JIGASI_SIP_KEEP_ALIVE_METHOD=OPTIONS
  205. # Health-check extension
  206. #JIGASI_HEALTH_CHECK_SIP_URI=keepalive
  207. # Health-check interval
  208. #JIGASI_HEALTH_CHECK_INTERVAL=300000
  209. #
  210. # Enable Jigasi transcription
  211. #ENABLE_TRANSCRIPTIONS=1
  212. # Jigasi will record audio when transcriber is on [default: false]
  213. #JIGASI_TRANSCRIBER_RECORD_AUDIO=true
  214. # Jigasi will send transcribed text to the chat when transcriber is on [default: false]
  215. #JIGASI_TRANSCRIBER_SEND_TXT=true
  216. # Jigasi will post an url to the chat with transcription file [default: false]
  217. #JIGASI_TRANSCRIBER_ADVERTISE_URL=true
  218. # Credentials for connect to Cloud Google API from Jigasi
  219. # Please read https://cloud.google.com/text-to-speech/docs/quickstart-protocol
  220. # section "Before you begin" paragraph 1 to 5
  221. # Copy the values from the json to the related env vars
  222. #GC_PROJECT_ID=
  223. #GC_PRIVATE_KEY_ID=
  224. #GC_PRIVATE_KEY=
  225. #GC_CLIENT_EMAIL=
  226. #GC_CLIENT_ID=
  227. #GC_CLIENT_CERT_URL=
  228. # Enable recording
  229. #ENABLE_RECORDING=1
  230. # XMPP domain for the jibri recorder
  231. XMPP_RECORDER_DOMAIN=recorder.meet.jitsi
  232. # XMPP recorder user for Jibri client connections
  233. JIBRI_RECORDER_USER=recorder
  234. # Directory for recordings inside Jibri container
  235. JIBRI_RECORDING_DIR=/config/recordings
  236. # The finalizing script. Will run after recording is complete
  237. #JIBRI_FINALIZE_RECORDING_SCRIPT_PATH=/config/finalize.sh
  238. # XMPP user for Jibri client connections
  239. JIBRI_XMPP_USER=jibri
  240. # MUC name for the Jibri pool
  241. JIBRI_BREWERY_MUC=jibribrewery
  242. # MUC connection timeout
  243. JIBRI_PENDING_TIMEOUT=90
  244. # When jibri gets a request to start a service for a room, the room
  245. # jid will look like: roomName@optional.prefixes.subdomain.xmpp_domain
  246. # We'll build the url for the call by transforming that into:
  247. # https://xmpp_domain/subdomain/roomName
  248. # So if there are any prefixes in the jid (like jitsi meet, which
  249. # has its participants join a muc at conference.xmpp_domain) then
  250. # list that prefix here so it can be stripped out to generate
  251. # the call url correctly
  252. JIBRI_STRIP_DOMAIN_JID=muc
  253. # Directory for logs inside Jibri container
  254. JIBRI_LOGS_DIR=/config/logs
  255. # Configure an external TURN server
  256. # TURN_CREDENTIALS=secret
  257. # TURN_HOST=turnserver.example.com
  258. # TURN_PORT=443
  259. # TURNS_HOST=turnserver.example.com
  260. # TURNS_PORT=443
  261. # Disable HTTPS: handle TLS connections outside of this setup
  262. #DISABLE_HTTPS=1
  263. # Enable FLoC
  264. # Opt-In to Federated Learning of Cohorts tracking
  265. #ENABLE_FLOC=0
  266. # Redirect HTTP traffic to HTTPS
  267. # Necessary for Let's Encrypt, relies on standard HTTPS port (443)
  268. #ENABLE_HTTP_REDIRECT=1
  269. # Send a `strict-transport-security` header to force browsers to use
  270. # a secure and trusted connection. Recommended for production use.
  271. # Defaults to 1 (send the header).
  272. # ENABLE_HSTS=1
  273. # Enable IPv6
  274. # Provides means to disable IPv6 in environments that don't support it (get with the times, people!)
  275. #ENABLE_IPV6=1
  276. # Container restart policy
  277. # Defaults to unless-stopped
  278. RESTART_POLICY=unless-stopped
  279. # Authenticate using external service or just focus external auth window if there is one already.
  280. # TOKEN_AUTH_URL=https://auth.meet.example.com/{room}
  281. # Sentry Error Tracking
  282. # Sentry Data Source Name (Endpoint for Sentry project)
  283. # Example: https://public:private@host:port/1
  284. #JVB_SENTRY_DSN=
  285. #JICOFO_SENTRY_DSN=
  286. #JIGASI_SENTRY_DSN=
  287. # Optional environment info to filter events
  288. #SENTRY_ENVIRONMENT=production
  289. # Optional release info to filter events
  290. #SENTRY_RELEASE=1.0.0
  291. # Optional properties for shutdown api
  292. #COLIBRI_REST_ENABLED=true
  293. #SHUTDOWN_REST_ENABLED=true
  294. # Configure toolbar buttons. Add the buttons name separated with comma(no spaces between comma)
  295. #TOOLBAR_BUTTONS=
  296. # Hide the buttons at pre-join screen. Add the buttons name separated with comma
  297. #HIDE_PREMEETING_BUTTONS=