Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

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