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.
 
 

321 wiersze
15 KiB

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