Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

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