Matrix Docker Ansible eploy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

268 rader
12 KiB

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