Matrix Docker Ansible eploy
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 

270 рядки
12 KiB

  1. ---
  2. # Project source code URL: https://github.com/jitsi/docker-jitsi-meet
  3. matrix_jitsi_enabled: true
  4. matrix_jitsi_base_path: "{{ matrix_base_data_path }}/jitsi"
  5. matrix_jitsi_enable_auth: false
  6. matrix_jitsi_enable_guests: false
  7. matrix_jitsi_enable_recording: false
  8. matrix_jitsi_enable_transcriptions: false
  9. matrix_jitsi_enable_jaas_components: false
  10. matrix_jitsi_enable_p2p: true
  11. matrix_jitsi_enable_av_moderation: true
  12. matrix_jitsi_enable_breakout_rooms: true
  13. # Authentication type, must be one of internal, jwt or ldap.
  14. # Currently only internal and ldap mechanisms are supported by this playbook.
  15. matrix_jitsi_auth_type: internal
  16. # A list of Jitsi (Prosody) accounts to create using the internal authentication mechanism.
  17. #
  18. # Accounts added here and subsquently removed will not be automatically removed
  19. # from the Prosody server until user account cleaning is integrated into the playbook.
  20. #
  21. # Example:
  22. # matrix_jitsi_prosody_auth_internal_accounts:
  23. # - username: "jitsi-moderator"
  24. # password: "secret-password"
  25. # - username: "another-user"
  26. # password: "another-password"
  27. matrix_jitsi_prosody_auth_internal_accounts: []
  28. # Configuration options for LDAP authentication. For details see upstream:
  29. # https://github.com/jitsi/docker-jitsi-meet#authentication-using-ldap.
  30. # Defaults are taken from:
  31. # https://github.com/jitsi/docker-jitsi-meet/blob/master/prosody/rootfs/defaults/saslauthd.conf
  32. matrix_jitsi_ldap_url: ""
  33. matrix_jitsi_ldap_base: ""
  34. matrix_jitsi_ldap_binddn: ""
  35. matrix_jitsi_ldap_bindpw: ""
  36. matrix_jitsi_ldap_filter: "uid=%u"
  37. matrix_jitsi_ldap_auth_method: "bind"
  38. matrix_jitsi_ldap_version: "3"
  39. matrix_jitsi_ldap_use_tls: false
  40. matrix_jitsi_ldap_tls_ciphers: ""
  41. matrix_jitsi_ldap_tls_check_peer: false
  42. matrix_jitsi_ldap_tls_cacert_file: "/etc/ssl/certs/ca-certificates.crt"
  43. matrix_jitsi_ldap_tls_cacert_dir: "/etc/ssl/certs"
  44. matrix_jitsi_ldap_start_tls: false
  45. matrix_jitsi_timezone: UTC
  46. matrix_jitsi_xmpp_domain: meet.jitsi
  47. matrix_jitsi_xmpp_server: xmpp.meet.jitsi
  48. matrix_jitsi_xmpp_auth_domain: auth.meet.jitsi
  49. matrix_jitsi_xmpp_bosh_url_base: http://{{ matrix_jitsi_xmpp_server }}:5280
  50. matrix_jitsi_xmpp_guest_domain: guest.meet.jitsi
  51. matrix_jitsi_xmpp_muc_domain: muc.meet.jitsi
  52. matrix_jitsi_xmpp_internal_muc_domain: internal-muc.meet.jitsi
  53. matrix_jitsi_xmpp_modules: ''
  54. matrix_jitsi_recorder_domain: recorder.meet.jitsi
  55. matrix_jitsi_jibri_brewery_muc: jibribrewery
  56. matrix_jitsi_jibri_pending_timeout: 90
  57. matrix_jitsi_jibri_xmpp_user: jibri
  58. matrix_jitsi_jibri_xmpp_password: ''
  59. matrix_jitsi_jibri_recorder_user: recorder
  60. matrix_jitsi_jibri_recorder_password: ''
  61. matrix_jitsi_enable_lobby: false
  62. matrix_jitsi_version: stable-7882
  63. matrix_jitsi_container_image_tag: "{{ matrix_jitsi_version }}" # for backward-compatibility
  64. matrix_jitsi_web_docker_image: "{{ matrix_container_global_registry_prefix }}jitsi/web:{{ matrix_jitsi_container_image_tag }}"
  65. matrix_jitsi_web_docker_image_force_pull: "{{ matrix_jitsi_web_docker_image.endswith(':latest') }}"
  66. matrix_jitsi_web_base_path: "{{ matrix_base_data_path }}/jitsi/web"
  67. matrix_jitsi_web_config_path: "{{ matrix_jitsi_web_base_path }}/config"
  68. matrix_jitsi_web_transcripts_path: "{{ matrix_jitsi_web_base_path }}/transcripts"
  69. matrix_jitsi_web_crontabs_path: "{{ matrix_jitsi_web_base_path }}/crontabs"
  70. matrix_jitsi_web_public_url: "https://{{ matrix_server_fqn_jitsi }}"
  71. # STUN servers used in the web UI. Feel free to point them to your own STUN server.
  72. # Addresses need to be prefixed with one of `stun:`, `turn:` or `turns:`.
  73. matrix_jitsi_web_stun_servers: ['stun:meet-jit-si-turnrelay.jitsi.net:443']
  74. # Setting up TURN
  75. # Default set with Coturn container
  76. matrix_jitsi_turn_credentials: "{{ matrix_coturn_turn_static_auth_secret }}"
  77. matrix_jitsi_turn_host: "turn.{{ matrix_server_fqn_matrix }}"
  78. matrix_jitsi_turns_host: "turn.{{ matrix_server_fqn_matrix }}"
  79. matrix_jitsi_turn_port: "{{ matrix_coturn_container_stun_plain_host_bind_port }}"
  80. matrix_jitsi_turns_port: "{{ matrix_coturn_container_stun_tls_host_bind_port }}"
  81. # Controls whether Etherpad will be available within Jitsi
  82. matrix_jitsi_etherpad_enabled: false
  83. # Controls whether the matrix-jitsi-web container exposes its HTTP port (tcp/80 in the container).
  84. #
  85. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:13080"), or empty string to not expose.
  86. matrix_jitsi_web_container_http_host_bind_port: ''
  87. # A list of extra arguments to pass to the container
  88. matrix_jitsi_web_container_extra_arguments: []
  89. # List of systemd services that matrix-jitsi-web.service depends on
  90. matrix_jitsi_web_systemd_required_services_list: ['docker.service']
  91. # Custom configuration to be appended to `interface_config.js`, passed to Jitsi Web.
  92. #
  93. # Note: not to be confused with `matrix_jitsi_web_custom_config_extension`.
  94. #
  95. # For interface configuration, the flow is like this:
  96. # - a default `interface_config.js` is generated from within the docker image
  97. # - the contents of `matrix_jitsi_web_custom_interface_config_extension` is appended and can define new settings or override defaults.
  98. #
  99. # Example:
  100. # matrix_jitsi_web_custom_interface_config_extension: |
  101. # interfaceConfig.LANG_DETECTION = false;
  102. # interfaceConfig.SHOW_JITSI_WATERMARK = false;
  103. # interfaceConfig.DISABLE_VIDEO_BACKGROUND = true;
  104. matrix_jitsi_web_custom_interface_config_extension: ''
  105. # Controls after which participant audio will be muted. If not specified, defaults to Jitsi's default value (likely 10)
  106. matrix_jitsi_web_config_start_audio_muted_after_nth_participant: ~
  107. # Controls after which participant video will be muted. If not specified, defaults to Jitsi's default value (likely 10)
  108. matrix_jitsi_web_config_start_video_muted_after_nth_participant: ~
  109. matrix_jitsi_web_config_defaultLanguage: 'en' # noqa var-naming
  110. # Ideal and also maximum resolution width. If not specified, defaults to Jitsi's default value (likely 1280)
  111. matrix_jitsi_web_config_resolution_width_ideal_and_max: ~
  112. # Minimum resolution width. If not specified, defaults to Jitsi's default value (likely 320)
  113. matrix_jitsi_web_config_resolution_width_min: ~
  114. # Ideal and also maximum resolution height. If not specified, defaults to Jitsi's default value (likely 720)
  115. matrix_jitsi_web_config_resolution_height_ideal_and_max: ~
  116. # Minimum resolution height. If not specified, defaults to Jitsi's default value (likely 180)
  117. matrix_jitsi_web_config_resolution_height_min: ~
  118. # Custom configuration to be injected into `custom-config.js`, passed to Jitsi Web.
  119. # This configuration gets appended to the final configuration that Jitsi Web uses.
  120. #
  121. # Note: not to be confused with `matrix_jitsi_web_custom_interface_config_extension`.
  122. #
  123. # The flow is like this:
  124. # - some default configuration is automatically generated based on the environment variables passed to the Jitsi Web container
  125. # - the contents of `custom-config.js` is appended to it (see `templates/web/custom-config.js.j2`)
  126. # - said `custom-config.js` contains your custom contents specified in `matrix_jitsi_web_custom_config_extension`.
  127. #
  128. # Example:
  129. # matrix_jitsi_web_custom_config_extension: |
  130. # if (!config.hasOwnProperty('testing')) config.testing = {};
  131. # config.testing.p2pTestMode = true
  132. matrix_jitsi_web_custom_config_extension: ''
  133. # Additional environment variables to pass to the Jitsi Web container.
  134. # You can use this to further influence the default configuration generated by the Jitsi Web container on every startup.
  135. # Besides influencing the final configuration by passing environment variables, you can also inject custom configuration
  136. # by using `matrix_jitsi_web_custom_config_extension`.
  137. #
  138. # Example:
  139. # matrix_jitsi_web_environment_variables_extension: |
  140. # ENABLE_FILE_RECORDING_SERVICE=1
  141. # DROPBOX_APPKEY=something
  142. # DROPBOX_REDIRECT_URI=something
  143. matrix_jitsi_web_environment_variables_extension: ''
  144. matrix_jitsi_prosody_docker_image: "{{ matrix_container_global_registry_prefix }}jitsi/prosody:{{ matrix_jitsi_container_image_tag }}"
  145. matrix_jitsi_prosody_docker_image_force_pull: "{{ matrix_jitsi_prosody_docker_image.endswith(':latest') }}"
  146. matrix_jitsi_prosody_base_path: "{{ matrix_base_data_path }}/jitsi/prosody"
  147. matrix_jitsi_prosody_config_path: "{{ matrix_jitsi_prosody_base_path }}/config"
  148. matrix_jitsi_prosody_plugins_path: "{{ matrix_jitsi_prosody_base_path }}/prosody-plugins-custom"
  149. # A list of extra arguments to pass to the container
  150. matrix_jitsi_prosody_container_extra_arguments: []
  151. # List of systemd services that matrix-jitsi-prosody.service depends on
  152. matrix_jitsi_prosody_systemd_required_services_list: ['docker.service']
  153. # Neccessary Port binding for those disabling the integrated nginx proxy
  154. matrix_jitsi_prosody_container_http_host_bind_port: ''
  155. matrix_jitsi_jicofo_docker_image: "{{ matrix_container_global_registry_prefix }}jitsi/jicofo:{{ matrix_jitsi_container_image_tag }}"
  156. matrix_jitsi_jicofo_docker_image_force_pull: "{{ matrix_jitsi_jicofo_docker_image.endswith(':latest') }}"
  157. matrix_jitsi_jicofo_base_path: "{{ matrix_base_data_path }}/jitsi/jicofo"
  158. matrix_jitsi_jicofo_config_path: "{{ matrix_jitsi_jicofo_base_path }}/config"
  159. # A list of extra arguments to pass to the container
  160. matrix_jitsi_jicofo_container_extra_arguments: []
  161. # List of systemd services that matrix-jitsi-jicofo.service depends on
  162. matrix_jitsi_jicofo_systemd_required_services_list: ['docker.service', 'matrix-jitsi-prosody.service']
  163. matrix_jitsi_jicofo_component_secret: ''
  164. matrix_jitsi_jicofo_auth_user: focus
  165. matrix_jitsi_jicofo_auth_password: ''
  166. matrix_jitsi_jvb_docker_image: "{{ matrix_container_global_registry_prefix }}jitsi/jvb:{{ matrix_jitsi_container_image_tag }}"
  167. matrix_jitsi_jvb_docker_image_force_pull: "{{ matrix_jitsi_jvb_docker_image.endswith(':latest') }}"
  168. matrix_jitsi_jvb_base_path: "{{ matrix_base_data_path }}/jitsi/jvb"
  169. matrix_jitsi_jvb_config_path: "{{ matrix_jitsi_jvb_base_path }}/config"
  170. # A list of extra arguments to pass to the container
  171. matrix_jitsi_jvb_container_extra_arguments: []
  172. # List of systemd services that matrix-jitsi-jvb.service depends on
  173. matrix_jitsi_jvb_systemd_required_services_list: ['docker.service', 'matrix-jitsi-prosody.service']
  174. matrix_jitsi_jvb_auth_user: jvb
  175. matrix_jitsi_jvb_auth_password: ''
  176. # STUN servers used by JVB on the server-side, so it can discover its own external IP address.
  177. # Pointing this to a STUN server running on the same Docker network may lead to incorrect IP address discovery.
  178. matrix_jitsi_jvb_stun_servers: ['meet-jit-si-turnrelay.jitsi.net:443']
  179. matrix_jitsi_jvb_brewery_muc: jvbbrewery
  180. matrix_jitsi_jvb_rtp_udp_port: 10000
  181. matrix_jitsi_jvb_rtp_tcp_port: 4443
  182. # Custom configuration to be injected into `custom-sip-communicator.properties`, passed to Jitsi JVB.
  183. # This configuration gets appended to the final configuration that Jitsi JVB uses.
  184. #
  185. # The flow is like this:
  186. # - some default configuration is automatically generated based on the environment variables passed to the Jitsi JVB container
  187. # - the contents of `custom-sip-communicator.properties` is appended to it (see `templates/jvb/custom-sip-communicator.properties.j2`)
  188. # - said `custom-sip-communicator.properties` contains your custom contents specified in `matrix_jitsi_jvb_custom_config_extension`.
  189. #
  190. # Example:
  191. # matrix_jitsi_jvb_custom_config_extension: |
  192. # org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=false
  193. # org.jitsi.videobridge.ENABLE_STATISTICS=false
  194. matrix_jitsi_jvb_custom_config_extension: ''
  195. # Additional environment variables to pass to the Jitsi JVB container.
  196. # You can use this to further influence the default configuration generated by the Jitsi JVB container on every startup.
  197. # Besides influencing the final configuration by passing environment variables, you can also inject custom configuration
  198. # by using `matrix_jitsi_jvb_custom_config_extension`.
  199. #
  200. # Example:
  201. # matrix_jitsi_jvb_environment_variables_extension: |
  202. # SOME_VARIABLE=1
  203. # ANOTHER_VARIABLE=something
  204. matrix_jitsi_jvb_environment_variables_extension: ''
  205. # Controls whether the matrix-jitsi-jvb container exposes its RTP UDP port (udp/10000 in the container).
  206. #
  207. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:10000"), or empty string to not expose.
  208. matrix_jitsi_jvb_container_rtp_udp_host_bind_port: "{{ matrix_jitsi_jvb_rtp_udp_port }}"
  209. # Controls whether the matrix-jitsi-jvb container exposes its RTP UDP port (udp/4443 in the container).
  210. #
  211. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:4443"), or empty string to not expose.
  212. matrix_jitsi_jvb_container_rtp_tcp_host_bind_port: "{{ matrix_jitsi_jvb_rtp_tcp_port }}"
  213. # Controls whether the matrix-jitsi-jvb container exposes its Colibri WebSocket port (tcp/9090 in the container).
  214. #
  215. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:12090"), or empty string to not expose.
  216. matrix_jitsi_jvb_container_colibri_ws_host_bind_port: ''