Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

255 wiersze
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_container_image_tag: "stable-5142"
  45. matrix_jitsi_web_docker_image: "docker.io/jitsi/web:{{ matrix_jitsi_container_image_tag }}"
  46. matrix_jitsi_web_docker_image_force_pull: "{{ matrix_jitsi_web_docker_image.endswith(':latest') }}"
  47. matrix_jitsi_web_base_path: "{{ matrix_base_data_path }}/jitsi/web"
  48. matrix_jitsi_web_config_path: "{{ matrix_jitsi_web_base_path }}/config"
  49. matrix_jitsi_web_transcripts_path: "{{ matrix_jitsi_web_base_path }}/transcripts"
  50. matrix_jitsi_web_public_url: "https://{{ matrix_server_fqn_jitsi }}"
  51. # STUN servers used in the web UI. Feel free to point them to your own STUN server.
  52. # Addresses need to be prefixed with one of `stun:`, `turn:` or `turns:`.
  53. matrix_jitsi_web_stun_servers: ['stun:meet-jit-si-turnrelay.jitsi.net:443']
  54. # Controls whether the matrix-jitsi-web container exposes its HTTP port (tcp/80 in the container).
  55. #
  56. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:12080"), or empty string to not expose.
  57. matrix_jitsi_web_container_http_host_bind_port: ''
  58. # A list of extra arguments to pass to the container
  59. matrix_jitsi_web_container_extra_arguments: []
  60. # List of systemd services that matrix-jitsi-web.service depends on
  61. matrix_jitsi_web_systemd_required_services_list: ['docker.service']
  62. # Some variables controlling the interface of Jitsi Web.
  63. # These get applied to `templates/web/interface_config.js.j2`.
  64. #
  65. # Besides this, you can also use `matrix_jitsi_web_custom_interface_config_extension`
  66. # to define any other configuration option.
  67. matrix_jitsi_web_interface_config_lang_detection: false
  68. matrix_jitsi_web_interface_config_show_jitsi_watermark: true
  69. matrix_jitsi_web_interface_config_jitsi_watermark_link: "https://jitsi.org"
  70. matrix_jitsi_web_interface_config_show_brand_watermark: false
  71. matrix_jitsi_web_interface_config_brand_watermark_link: ""
  72. matrix_jitsi_web_interface_config_generate_room_names_on_welcome_page: true
  73. matrix_jitsi_web_interface_config_display_welcome_page_content: true
  74. matrix_jitsi_web_interface_config_app_name: "Jitsi Meet"
  75. matrix_jitsi_web_interface_config_native_app_name: "Jitsi Meet"
  76. matrix_jitsi_web_interface_config_provider_name: "Jitsi"
  77. matrix_jitsi_web_interface_config_show_powered_by: false
  78. matrix_jitsi_web_interface_config_disable_transcription_subtitles: false
  79. matrix_jisti_web_interface_config_show_deep_linking_image: false
  80. # Custom configuration to be injected into `interface_config.js`, passed to Jitsi Web.
  81. # This configuration gets appended to the final interface configuration that Jitsi Web uses.
  82. #
  83. # Note: not to be confused with `matrix_jitsi_web_custom_config_extension`.
  84. #
  85. # For interface configuration, the flow is like this:
  86. # - 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)
  87. # - the contents of `matrix_jitsi_web_custom_interface_config_extension` is appended and can define new settings or override defaults.
  88. #
  89. # Example:
  90. # matrix_jitsi_web_custom_interface_config_extension: |
  91. # interfaceConfig.CONNECTION_INDICATOR_AUTO_HIDE_ENABLED = false;
  92. # interfaceConfig.DISABLE_VIDEO_BACKGROUND = true;
  93. matrix_jitsi_web_custom_interface_config_extension: ''
  94. # Controls after which participant audio will be muted. If not specified, defaults to Jitsi's default value (likely 10)
  95. matrix_jitsi_web_config_start_audio_muted_after_nth_participant: ~
  96. # Controls after which participant video will be muted. If not specified, defaults to Jitsi's default value (likely 10)
  97. matrix_jitsi_web_config_start_video_muted_after_nth_participant: ~
  98. matrix_jitsi_web_config_defaultLanguage: 'en'
  99. # Ideal and also maximum resolution width. If not specified, defaults to Jitsi's default value (likely 1280)
  100. matrix_jitsi_web_config_resolution_width_ideal_and_max: ~
  101. # Minimum resolution width. If not specified, defaults to Jitsi's default value (likely 320)
  102. matrix_jitsi_web_config_resolution_width_min: ~
  103. # Ideal and also maximum resolution height. If not specified, defaults to Jitsi's default value (likely 720)
  104. matrix_jitsi_web_config_resolution_height_ideal_and_max: ~
  105. # Minimum resolution height. If not specified, defaults to Jitsi's default value (likely 180)
  106. matrix_jitsi_web_config_resolution_height_min: ~
  107. # Custom configuration to be injected into `custom-config.js`, passed to Jitsi Web.
  108. # This configuration gets appended to the final configuration that Jitsi Web uses.
  109. #
  110. # Note: not to be confused with `matrix_jitsi_web_custom_interface_config_extension`.
  111. #
  112. # The flow is like this:
  113. # - some default configuration is automatically generated based on the environment variables passed to the Jitsi Web container
  114. # - the contents of `custom-config.js` is appended to it (see `templates/web/custom-config.js.j2`)
  115. # - said `custom-config.js` contains your custom contents specified in `matrix_jitsi_web_custom_config_extension`.
  116. #
  117. # Example:
  118. # matrix_jitsi_web_custom_config_extension: |
  119. # if (!config.hasOwnProperty('testing')) config.testing = {};
  120. # config.testing.p2pTestMode = true
  121. matrix_jitsi_web_custom_config_extension: ''
  122. # Additional environment variables to pass to the Jitsi Web container.
  123. # You can use this to further influence the default configuration generated by the Jitsi Web container on every startup.
  124. # Besides influencing the final configuration by passing environment variables, you can also inject custom configuration
  125. # by using `matrix_jitsi_web_custom_config_extension`.
  126. #
  127. # Example:
  128. # matrix_jitsi_web_environment_variables_extension: |
  129. # ENABLE_FILE_RECORDING_SERVICE=1
  130. # DROPBOX_APPKEY=something
  131. # DROPBOX_REDIRECT_URI=something
  132. matrix_jitsi_web_environment_variables_extension: ''
  133. matrix_jitsi_prosody_docker_image: "docker.io/jitsi/prosody:{{ matrix_jitsi_container_image_tag }}"
  134. matrix_jitsi_prosody_docker_image_force_pull: "{{ matrix_jitsi_prosody_docker_image.endswith(':latest') }}"
  135. matrix_jitsi_prosody_base_path: "{{ matrix_base_data_path }}/jitsi/prosody"
  136. matrix_jitsi_prosody_config_path: "{{ matrix_jitsi_prosody_base_path }}/config"
  137. matrix_jitsi_prosody_plugins_path: "{{ matrix_jitsi_prosody_base_path }}/prosody-plugins-custom"
  138. # A list of extra arguments to pass to the container
  139. matrix_jitsi_prosody_container_extra_arguments: []
  140. # List of systemd services that matrix-jitsi-prosody.service depends on
  141. matrix_jitsi_prosody_systemd_required_services_list: ['docker.service']
  142. matrix_jitsi_jicofo_docker_image: "docker.io/jitsi/jicofo:{{ matrix_jitsi_container_image_tag }}"
  143. matrix_jitsi_jicofo_docker_image_force_pull: "{{ matrix_jitsi_jicofo_docker_image.endswith(':latest') }}"
  144. matrix_jitsi_jicofo_base_path: "{{ matrix_base_data_path }}/jitsi/jicofo"
  145. matrix_jitsi_jicofo_config_path: "{{ matrix_jitsi_jicofo_base_path }}/config"
  146. # A list of extra arguments to pass to the container
  147. matrix_jitsi_jicofo_container_extra_arguments: []
  148. # List of systemd services that matrix-jitsi-jicofo.service depends on
  149. matrix_jitsi_jicofo_systemd_required_services_list: ['docker.service', 'matrix-jitsi-prosody.service']
  150. matrix_jitsi_jicofo_component_secret: ''
  151. matrix_jitsi_jicofo_auth_user: focus
  152. matrix_jitsi_jicofo_auth_password: ''
  153. matrix_jitsi_jvb_docker_image: "docker.io/jitsi/jvb:{{ matrix_jitsi_container_image_tag }}"
  154. matrix_jitsi_jvb_docker_image_force_pull: "{{ matrix_jitsi_jvb_docker_image.endswith(':latest') }}"
  155. matrix_jitsi_jvb_base_path: "{{ matrix_base_data_path }}/jitsi/jvb"
  156. matrix_jitsi_jvb_config_path: "{{ matrix_jitsi_jvb_base_path }}/config"
  157. # A list of extra arguments to pass to the container
  158. matrix_jitsi_jvb_container_extra_arguments: []
  159. # List of systemd services that matrix-jitsi-jvb.service depends on
  160. matrix_jitsi_jvb_systemd_required_services_list: ['docker.service', 'matrix-jitsi-prosody.service']
  161. matrix_jitsi_jvb_auth_user: jvb
  162. matrix_jitsi_jvb_auth_password: ''
  163. # STUN servers used by JVB on the server-side, so it can discover its own external IP address.
  164. # Pointing this to a STUN server running on the same Docker network may lead to incorrect IP address discovery.
  165. matrix_jitsi_jvb_stun_servers: ['meet-jit-si-turnrelay.jitsi.net:443']
  166. matrix_jitsi_jvb_brewery_muc: jvbbrewery
  167. matrix_jitsi_jvb_rtp_udp_port: 10000
  168. matrix_jitsi_jvb_rtp_tcp_port: 4443
  169. # Custom configuration to be injected into `custom-sip-communicator.properties`, passed to Jitsi JVB.
  170. # This configuration gets appended to the final configuration that Jitsi JVB uses.
  171. #
  172. # The flow is like this:
  173. # - some default configuration is automatically generated based on the environment variables passed to the Jitsi JVB container
  174. # - the contents of `custom-sip-communicator.properties` is appended to it (see `templates/jvb/custom-sip-communicator.properties.j2`)
  175. # - said `custom-sip-communicator.properties` contains your custom contents specified in `matrix_jitsi_jvb_custom_config_extension`.
  176. #
  177. # Example:
  178. # matrix_jitsi_jvb_custom_config_extension: |
  179. # org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=false
  180. # org.jitsi.videobridge.ENABLE_STATISTICS=false
  181. matrix_jitsi_jvb_custom_config_extension: ''
  182. # Additional environment variables to pass to the Jitsi JVB container.
  183. # You can use this to further influence the default configuration generated by the Jitsi JVB container on every startup.
  184. # Besides influencing the final configuration by passing environment variables, you can also inject custom configuration
  185. # by using `matrix_jitsi_jvb_custom_config_extension`.
  186. #
  187. # Example:
  188. # matrix_jitsi_jvb_environment_variables_extension: |
  189. # SOME_VARIABLE=1
  190. # ANOTHER_VARIABLE=something
  191. matrix_jitsi_jvb_environment_variables_extension: ''
  192. # Controls whether the matrix-jitsi-jvb container exposes its RTP UDP port (udp/10000 in the container).
  193. #
  194. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:10000"), or empty string to not expose.
  195. matrix_jitsi_jvb_container_rtp_udp_host_bind_port: "{{ matrix_jitsi_jvb_rtp_udp_port }}"
  196. # Controls whether the matrix-jitsi-jvb container exposes its RTP UDP port (udp/4443 in the container).
  197. #
  198. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:4443"), or empty string to not expose.
  199. matrix_jitsi_jvb_container_rtp_tcp_host_bind_port: "{{ matrix_jitsi_jvb_rtp_tcp_port }}"
  200. # Controls whether the matrix-jitsi-jvb container exposes its Colibri WebSocket port (tcp/9090 in the container).
  201. #
  202. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:12090"), or empty string to not expose.
  203. matrix_jitsi_jvb_container_colibri_ws_host_bind_port: ''