Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 

162 строки
7.1 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: true
  6. matrix_jitsi_enable_transcriptions: true
  7. # Authentication type, must be one of internal, jwt or ldap. Currently only
  8. # internal and ldap are supported by this playbook.
  9. matrix_jitsi_auth_type: internal
  10. # Configuration options for LDAP authentication. For details see upstream:
  11. # https://github.com/jitsi/docker-jitsi-meet#authentication-using-ldap.
  12. # Defaults are taken from:
  13. # https://github.com/jitsi/docker-jitsi-meet/blob/master/prosody/rootfs/defaults/saslauthd.conf
  14. matrix_jitsi_ldap_url: ""
  15. matrix_jitsi_ldap_base: ""
  16. matrix_jitsi_ldap_binddn: ""
  17. matrix_jitsi_ldap_bindpw: ""
  18. matrix_jitsi_ldap_filter: "uid=%u"
  19. matrix_jitsi_ldap_auth_method: "bind"
  20. matrix_jitsi_ldap_version: "3"
  21. matrix_jitsi_ldap_use_tls: false
  22. matrix_jitsi_ldap_tls_ciphers: ""
  23. matrix_jitsi_ldap_tls_check_peer: false
  24. matrix_jitsi_ldap_tls_cacert_file: "/etc/ssl/certs/ca-certificates.crt"
  25. matrix_jitsi_ldap_tls_cacert_dir: "/etc/ssl/certs"
  26. matrix_jitsi_ldap_start_tls: false
  27. matrix_jitsi_timezone: UTC
  28. matrix_jitsi_xmpp_domain: matrix-jitsi-web
  29. matrix_jitsi_xmpp_server: matrix-jitsi-prosody
  30. matrix_jitsi_xmpp_auth_domain: auth.meet.jitsi
  31. matrix_jitsi_xmpp_bosh_url_base: http://{{ matrix_jitsi_xmpp_server }}:5280
  32. matrix_jitsi_xmpp_guest_domain: guest.meet.jitsi
  33. matrix_jitsi_xmpp_muc_domain: muc.meet.jitsi
  34. matrix_jitsi_xmpp_internal_muc_domain: internal-muc.meet.jitsi
  35. matrix_jitsi_recorder_domain: recorder.meet.jitsi
  36. matrix_jitsi_jibri_brewery_muc: jibribrewery
  37. matrix_jitsi_jibri_pending_timeout: 90
  38. matrix_jitsi_jibri_xmpp_user: jibri
  39. matrix_jitsi_jibri_xmpp_password: ''
  40. matrix_jitsi_jibri_recorder_user: recorder
  41. matrix_jitsi_jibri_recorder_password: ''
  42. matrix_jitsi_web_docker_image: "jitsi/web:stable-4548-1"
  43. matrix_jitsi_web_docker_image_force_pull: "{{ matrix_jitsi_web_docker_image.endswith(':latest') }}"
  44. matrix_jitsi_web_base_path: "{{ matrix_base_data_path }}/jitsi/web"
  45. matrix_jitsi_web_config_path: "{{ matrix_jitsi_web_base_path }}/config"
  46. matrix_jitsi_web_transcripts_path: "{{ matrix_jitsi_web_base_path }}/transcripts"
  47. matrix_jitsi_web_public_url: "https://{{ matrix_server_fqn_jitsi }}"
  48. # STUN servers used in the web UI. Feel free to point them to your own STUN server.
  49. # Addresses need to be prefixed with one of `stun:`, `turn:` or `turns:`.
  50. matrix_jitsi_web_stun_servers: ['stun:meet-jit-si-turnrelay.jitsi.net:443']
  51. # Controls whether the matrix-jitsi-web container exposes its HTTP port (tcp/80 in the container).
  52. #
  53. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:12080"), or empty string to not expose.
  54. matrix_jitsi_web_container_http_host_bind_port: ''
  55. # A list of extra arguments to pass to the container
  56. matrix_jitsi_web_container_extra_arguments: []
  57. # List of systemd services that matrix-jitsi-web.service depends on
  58. matrix_jitsi_web_systemd_required_services_list: ['docker.service']
  59. matrix_jitsi_web_config_defaultLanguage: 'en'
  60. matrix_jitsi_web_config_start_with_audio_muted: false
  61. matrix_jitsi_web_config_start_with_video_muted: false
  62. matrix_jitsi_web_config_testing_enableFirefoxSimulcast: false
  63. matrix_jitsi_web_config_testing_p2pTestMode: false
  64. matrix_jitsi_web_interface_config_lang_detection: false
  65. matrix_jitsi_web_interface_config_show_jitsi_watermark: true
  66. matrix_jitsi_web_interface_config_jitsi_watermark_link: "https://jitsi.org"
  67. matrix_jitsi_web_interface_config_show_brand_watermark: false
  68. matrix_jitsi_web_interface_config_brand_watermark_link: ""
  69. matrix_jitsi_web_interface_config_show_watermark_for_guests: true
  70. matrix_jitsi_web_interface_config_generate_room_names_on_welcome_page: true
  71. matrix_jitsi_web_interface_config_display_welcome_page_content: true
  72. matrix_jitsi_web_interface_config_app_name: "Jitsi Meet"
  73. matrix_jitsi_web_interface_config_native_app_name: "Jitsi Meet"
  74. matrix_jitsi_web_interface_config_provider_name: "Jitsi"
  75. matrix_jitsi_web_interface_config_invitation_powered_by: true
  76. matrix_jitsi_web_interface_config_show_powered_by: false
  77. matrix_jitsi_web_interface_config_disable_transcription_subtitles: false
  78. matrix_jisti_web_interface_config_show_deep_linking_image: false
  79. matrix_jitsi_prosody_docker_image: "jitsi/prosody:stable-4548-1"
  80. matrix_jitsi_prosody_docker_image_force_pull: "{{ matrix_jitsi_prosody_docker_image.endswith(':latest') }}"
  81. matrix_jitsi_prosody_base_path: "{{ matrix_base_data_path }}/jitsi/prosody"
  82. matrix_jitsi_prosody_config_path: "{{ matrix_jitsi_prosody_base_path }}/config"
  83. matrix_jitsi_prosody_plugins_path: "{{ matrix_jitsi_prosody_base_path }}/prosody-plugins-custom"
  84. # A list of extra arguments to pass to the container
  85. matrix_jitsi_prosody_container_extra_arguments: []
  86. # List of systemd services that matrix-jitsi-prosody.service depends on
  87. matrix_jitsi_prosody_systemd_required_services_list: ['docker.service']
  88. matrix_jitsi_jicofo_docker_image: "jitsi/jicofo:stable-4548-1"
  89. matrix_jitsi_jicofo_docker_image_force_pull: "{{ matrix_jitsi_jicofo_docker_image.endswith(':latest') }}"
  90. matrix_jitsi_jicofo_base_path: "{{ matrix_base_data_path }}/jitsi/jicofo"
  91. matrix_jitsi_jicofo_config_path: "{{ matrix_jitsi_jicofo_base_path }}/config"
  92. # A list of extra arguments to pass to the container
  93. matrix_jitsi_jicofo_container_extra_arguments: []
  94. # List of systemd services that matrix-jitsi-jicofo.service depends on
  95. matrix_jitsi_jicofo_systemd_required_services_list: ['docker.service', 'matrix-jitsi-prosody.service']
  96. matrix_jitsi_jicofo_component_secret: ''
  97. matrix_jitsi_jicofo_auth_user: focus
  98. matrix_jitsi_jicofo_auth_password: ''
  99. matrix_jitsi_jvb_docker_image: "jitsi/jvb:stable-4548-1"
  100. matrix_jitsi_jvb_docker_image_force_pull: "{{ matrix_jitsi_jvb_docker_image.endswith(':latest') }}"
  101. matrix_jitsi_jvb_base_path: "{{ matrix_base_data_path }}/jitsi/jvb"
  102. matrix_jitsi_jvb_config_path: "{{ matrix_jitsi_jvb_base_path }}/config"
  103. # A list of extra arguments to pass to the container
  104. matrix_jitsi_jvb_container_extra_arguments: []
  105. # List of systemd services that matrix-jitsi-jvb.service depends on
  106. matrix_jitsi_jvb_systemd_required_services_list: ['docker.service', 'matrix-jitsi-prosody.service']
  107. matrix_jitsi_jvb_auth_user: jvb
  108. matrix_jitsi_jvb_auth_password: ''
  109. # STUN servers used by JVB on the server-side, so it can discover its own external IP address.
  110. # Pointing this to a STUN server running on the same Docker network may lead to incorrect IP address discovery.
  111. matrix_jitsi_jvb_stun_servers: ['meet-jit-si-turnrelay.jitsi.net:443']
  112. matrix_jitsi_jvb_brewery_muc: jvbbrewery
  113. matrix_jitsi_jvb_rtp_udp_port: 10000
  114. matrix_jitsi_jvb_rtp_tcp_port: 4443
  115. # Controls whether the matrix-jitsi-jvb container exposes its RTP UDP port (udp/10000 in the container).
  116. #
  117. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:10000"), or empty string to not expose.
  118. matrix_jitsi_jvb_container_rtp_udp_host_bind_port: "{{ matrix_jitsi_jvb_rtp_udp_port }}"
  119. # Controls whether the matrix-jitsi-jvb container exposes its RTP UDP port (udp/4443 in the container).
  120. #
  121. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:4443"), or empty string to not expose.
  122. matrix_jitsi_jvb_container_rtp_tcp_host_bind_port: "{{ matrix_jitsi_jvb_rtp_tcp_port }}"