Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

261 строка
12 KiB

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