Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

266 Zeilen
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. 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. # Custom configuration to be appended to `interface_config.js`, passed to Jitsi Web.
  89. #
  90. # Note: not to be confused with `matrix_jitsi_web_custom_config_extension`.
  91. #
  92. # For interface configuration, the flow is like this:
  93. # - a default `interface_config.js` is generated from within the docker image
  94. # - the contents of `matrix_jitsi_web_custom_interface_config_extension` is appended and can define new settings or override defaults.
  95. #
  96. # Example:
  97. # matrix_jitsi_web_custom_interface_config_extension: |
  98. # interfaceConfig.LANG_DETECTION = false;
  99. # interfaceConfig.SHOW_JITSI_WATERMARK = false;
  100. # interfaceConfig.DISABLE_VIDEO_BACKGROUND = true;
  101. matrix_jitsi_web_custom_interface_config_extension: ''
  102. # Controls after which participant audio will be muted. If not specified, defaults to Jitsi's default value (likely 10)
  103. matrix_jitsi_web_config_start_audio_muted_after_nth_participant: ~
  104. # Controls after which participant video will be muted. If not specified, defaults to Jitsi's default value (likely 10)
  105. matrix_jitsi_web_config_start_video_muted_after_nth_participant: ~
  106. matrix_jitsi_web_config_defaultLanguage: 'en'
  107. # Ideal and also maximum resolution width. If not specified, defaults to Jitsi's default value (likely 1280)
  108. matrix_jitsi_web_config_resolution_width_ideal_and_max: ~
  109. # Minimum resolution width. If not specified, defaults to Jitsi's default value (likely 320)
  110. matrix_jitsi_web_config_resolution_width_min: ~
  111. # Ideal and also maximum resolution height. If not specified, defaults to Jitsi's default value (likely 720)
  112. matrix_jitsi_web_config_resolution_height_ideal_and_max: ~
  113. # Minimum resolution height. If not specified, defaults to Jitsi's default value (likely 180)
  114. matrix_jitsi_web_config_resolution_height_min: ~
  115. # Custom configuration to be injected into `custom-config.js`, passed to Jitsi Web.
  116. # This configuration gets appended to the final configuration that Jitsi Web uses.
  117. #
  118. # Note: not to be confused with `matrix_jitsi_web_custom_interface_config_extension`.
  119. #
  120. # The flow is like this:
  121. # - some default configuration is automatically generated based on the environment variables passed to the Jitsi Web container
  122. # - the contents of `custom-config.js` is appended to it (see `templates/web/custom-config.js.j2`)
  123. # - said `custom-config.js` contains your custom contents specified in `matrix_jitsi_web_custom_config_extension`.
  124. #
  125. # Example:
  126. # matrix_jitsi_web_custom_config_extension: |
  127. # if (!config.hasOwnProperty('testing')) config.testing = {};
  128. # config.testing.p2pTestMode = true
  129. matrix_jitsi_web_custom_config_extension: ''
  130. # Additional environment variables to pass to the Jitsi Web container.
  131. # You can use this to further influence the default configuration generated by the Jitsi Web container on every startup.
  132. # Besides influencing the final configuration by passing environment variables, you can also inject custom configuration
  133. # by using `matrix_jitsi_web_custom_config_extension`.
  134. #
  135. # Example:
  136. # matrix_jitsi_web_environment_variables_extension: |
  137. # ENABLE_FILE_RECORDING_SERVICE=1
  138. # DROPBOX_APPKEY=something
  139. # DROPBOX_REDIRECT_URI=something
  140. matrix_jitsi_web_environment_variables_extension: ''
  141. matrix_jitsi_prosody_docker_image: "{{ matrix_container_global_registry_prefix }}jitsi/prosody:{{ matrix_jitsi_container_image_tag }}"
  142. matrix_jitsi_prosody_docker_image_force_pull: "{{ matrix_jitsi_prosody_docker_image.endswith(':latest') }}"
  143. matrix_jitsi_prosody_base_path: "{{ matrix_base_data_path }}/jitsi/prosody"
  144. matrix_jitsi_prosody_config_path: "{{ matrix_jitsi_prosody_base_path }}/config"
  145. matrix_jitsi_prosody_plugins_path: "{{ matrix_jitsi_prosody_base_path }}/prosody-plugins-custom"
  146. # A list of extra arguments to pass to the container
  147. matrix_jitsi_prosody_container_extra_arguments: []
  148. # List of systemd services that matrix-jitsi-prosody.service depends on
  149. matrix_jitsi_prosody_systemd_required_services_list: ['docker.service']
  150. # Neccessary Port binding for those disabling the integrated nginx proxy
  151. matrix_jitsi_prosody_container_http_host_bind_port: ''
  152. matrix_jitsi_jicofo_docker_image: "{{ matrix_container_global_registry_prefix }}jitsi/jicofo:{{ matrix_jitsi_container_image_tag }}"
  153. matrix_jitsi_jicofo_docker_image_force_pull: "{{ matrix_jitsi_jicofo_docker_image.endswith(':latest') }}"
  154. matrix_jitsi_jicofo_base_path: "{{ matrix_base_data_path }}/jitsi/jicofo"
  155. matrix_jitsi_jicofo_config_path: "{{ matrix_jitsi_jicofo_base_path }}/config"
  156. # A list of extra arguments to pass to the container
  157. matrix_jitsi_jicofo_container_extra_arguments: []
  158. # List of systemd services that matrix-jitsi-jicofo.service depends on
  159. matrix_jitsi_jicofo_systemd_required_services_list: ['docker.service', 'matrix-jitsi-prosody.service']
  160. matrix_jitsi_jicofo_component_secret: ''
  161. matrix_jitsi_jicofo_auth_user: focus
  162. matrix_jitsi_jicofo_auth_password: ''
  163. matrix_jitsi_jvb_docker_image: "{{ matrix_container_global_registry_prefix }}jitsi/jvb:{{ matrix_jitsi_container_image_tag }}"
  164. matrix_jitsi_jvb_docker_image_force_pull: "{{ matrix_jitsi_jvb_docker_image.endswith(':latest') }}"
  165. matrix_jitsi_jvb_base_path: "{{ matrix_base_data_path }}/jitsi/jvb"
  166. matrix_jitsi_jvb_config_path: "{{ matrix_jitsi_jvb_base_path }}/config"
  167. # A list of extra arguments to pass to the container
  168. matrix_jitsi_jvb_container_extra_arguments: []
  169. # List of systemd services that matrix-jitsi-jvb.service depends on
  170. matrix_jitsi_jvb_systemd_required_services_list: ['docker.service', 'matrix-jitsi-prosody.service']
  171. matrix_jitsi_jvb_auth_user: jvb
  172. matrix_jitsi_jvb_auth_password: ''
  173. # STUN servers used by JVB on the server-side, so it can discover its own external IP address.
  174. # Pointing this to a STUN server running on the same Docker network may lead to incorrect IP address discovery.
  175. matrix_jitsi_jvb_stun_servers: ['meet-jit-si-turnrelay.jitsi.net:443']
  176. matrix_jitsi_jvb_brewery_muc: jvbbrewery
  177. matrix_jitsi_jvb_rtp_udp_port: 10000
  178. matrix_jitsi_jvb_rtp_tcp_port: 4443
  179. # Custom configuration to be injected into `custom-sip-communicator.properties`, passed to Jitsi JVB.
  180. # This configuration gets appended to the final configuration that Jitsi JVB uses.
  181. #
  182. # The flow is like this:
  183. # - some default configuration is automatically generated based on the environment variables passed to the Jitsi JVB container
  184. # - the contents of `custom-sip-communicator.properties` is appended to it (see `templates/jvb/custom-sip-communicator.properties.j2`)
  185. # - said `custom-sip-communicator.properties` contains your custom contents specified in `matrix_jitsi_jvb_custom_config_extension`.
  186. #
  187. # Example:
  188. # matrix_jitsi_jvb_custom_config_extension: |
  189. # org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=false
  190. # org.jitsi.videobridge.ENABLE_STATISTICS=false
  191. matrix_jitsi_jvb_custom_config_extension: ''
  192. # Additional environment variables to pass to the Jitsi JVB container.
  193. # You can use this to further influence the default configuration generated by the Jitsi JVB container on every startup.
  194. # Besides influencing the final configuration by passing environment variables, you can also inject custom configuration
  195. # by using `matrix_jitsi_jvb_custom_config_extension`.
  196. #
  197. # Example:
  198. # matrix_jitsi_jvb_environment_variables_extension: |
  199. # SOME_VARIABLE=1
  200. # ANOTHER_VARIABLE=something
  201. matrix_jitsi_jvb_environment_variables_extension: ''
  202. # Controls whether the matrix-jitsi-jvb container exposes its RTP UDP port (udp/10000 in the container).
  203. #
  204. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:10000"), or empty string to not expose.
  205. matrix_jitsi_jvb_container_rtp_udp_host_bind_port: "{{ matrix_jitsi_jvb_rtp_udp_port }}"
  206. # Controls whether the matrix-jitsi-jvb container exposes its RTP UDP port (udp/4443 in the container).
  207. #
  208. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:4443"), or empty string to not expose.
  209. matrix_jitsi_jvb_container_rtp_tcp_host_bind_port: "{{ matrix_jitsi_jvb_rtp_tcp_port }}"
  210. # Controls whether the matrix-jitsi-jvb container exposes its Colibri WebSocket port (tcp/9090 in the container).
  211. #
  212. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:12090"), or empty string to not expose.
  213. matrix_jitsi_jvb_container_colibri_ws_host_bind_port: ''