Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

494 linhas
19 KiB

  1. ---
  2. # This variables file wires together the various components (roles) used by the playbook.
  3. #
  4. # Roles used by playbook are pretty minimal and kept independent of one another as much as possible.
  5. # To deliver a turnkey fully-featured Matrix server, this playbook needs
  6. # to connect them all together. It does so by overriding role variables.
  7. #
  8. # You can also override ANY variable (seen here or in any given role),
  9. # by re-defining it in your own configuration file (`inventory/host_vars/matrix.<your-domain>`).
  10. ######################################################################
  11. #
  12. # matrix-base
  13. #
  14. ######################################################################
  15. matrix_identity_server_url: "{{ 'https://' + matrix_synapse_trusted_third_party_id_servers[0] if matrix_synapse_trusted_third_party_id_servers|length > 0 else None }}"
  16. ######################################################################
  17. #
  18. # /matrix-base
  19. #
  20. ######################################################################
  21. ######################################################################
  22. #
  23. # matrix-bridge-appservice-discord
  24. #
  25. ######################################################################
  26. # We don't enable bridges by default.
  27. matrix_appservice_discord_enabled: false
  28. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-appservice-discord over the container network.
  29. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  30. # matrix-appservice-discord's client-server port to the local host (`127.0.0.1:9005`).
  31. matrix_appservice_discord_container_expose_client_server_api_port: "{{ not matrix_nginx_proxy_enabled }}"
  32. matrix_appservice_discord_systemd_required_services_list: ['docker.service', 'matrix-synapse.service']
  33. ######################################################################
  34. #
  35. # /matrix-bridge-appservice-discord
  36. #
  37. ######################################################################
  38. ######################################################################
  39. #
  40. # matrix-bridge-appservice-irc
  41. #
  42. ######################################################################
  43. # We don't enable bridges by default.
  44. matrix_appservice_irc_enabled: false
  45. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-appservice-irc over the container network.
  46. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  47. # matrix-appservice-irc's client-server port to the local host (`127.0.0.1:9999`).
  48. matrix_appservice_irc_container_expose_client_server_api_port: "{{ not matrix_nginx_proxy_enabled }}"
  49. matrix_appservice_irc_systemd_required_services_list: ['docker.service', 'matrix-synapse.service']
  50. ######################################################################
  51. #
  52. # /matrix-bridge-appservice-irc
  53. #
  54. ######################################################################
  55. ######################################################################
  56. #
  57. # matrix-bridge-mautrix-facebook
  58. #
  59. ######################################################################
  60. # We don't enable bridges by default.
  61. matrix_mautrix_facebook_enabled: false
  62. matrix_mautrix_facebook_systemd_required_services_list: ['docker.service', 'matrix-synapse.service']
  63. ######################################################################
  64. #
  65. # /matrix-bridge-mautrix-facebook
  66. #
  67. ######################################################################
  68. ######################################################################
  69. #
  70. # matrix-bridge-mautrix-telegram
  71. #
  72. ######################################################################
  73. # We don't enable bridges by default.
  74. matrix_mautrix_telegram_enabled: false
  75. matrix_mautrix_telegram_systemd_required_services_list: ['docker.service', 'matrix-synapse.service']
  76. matrix_mautrix_telegram_public_endpoint: "/{{ matrix_synapse_macaroon_secret_key | password_hash('sha512', 'telegram') | to_uuid }}"
  77. ######################################################################
  78. #
  79. # /matrix-bridge-mautrix-telegram
  80. #
  81. ######################################################################
  82. ######################################################################
  83. #
  84. # matrix-bridge-mautrix-whatsapp
  85. #
  86. ######################################################################
  87. # We don't enable bridges by default.
  88. matrix_mautrix_whatsapp_enabled: false
  89. matrix_mautrix_whatsapp_systemd_required_services_list: ['docker.service', 'matrix-synapse.service']
  90. ######################################################################
  91. #
  92. # /matrix-bridge-mautrix-whatsapp
  93. #
  94. ######################################################################
  95. ######################################################################
  96. #
  97. # matrix-corporal
  98. #
  99. ######################################################################
  100. matrix_corporal_enabled: false
  101. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-corporal over the container network.
  102. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  103. # matrix-corporal's web-server ports to the local host (`127.0.0.1:41080` and `127.0.0.1:41081`).
  104. matrix_corporal_container_expose_ports: "{{ not matrix_nginx_proxy_enabled }}"
  105. matrix_corporal_systemd_required_services_list: |
  106. {{
  107. (['docker.service'])
  108. +
  109. (['matrix-synapse.service'])
  110. }}
  111. matrix_corporal_matrix_homeserver_api_endpoint: "http://matrix-synapse:8008"
  112. matrix_corporal_matrix_auth_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret }}"
  113. matrix_corporal_matrix_registration_shared_secret: "{{ matrix_synapse_registration_shared_secret }}"
  114. ######################################################################
  115. #
  116. # /matrix-corporal
  117. #
  118. ######################################################################
  119. ######################################################################
  120. #
  121. # matrix-coturn
  122. #
  123. ######################################################################
  124. matrix_coturn_enabled: true
  125. matrix_coturn_turn_external_ip_address: "{{ ansible_host }}"
  126. matrix_coturn_tls_enabled: true
  127. matrix_coturn_tls_cert_path: "{{ matrix_ssl_config_dir_path }}/live/{{ matrix_server_fqn_matrix }}/fullchain.pem"
  128. matrix_coturn_tls_key_path: "{{ matrix_ssl_config_dir_path }}/live/{{ matrix_server_fqn_matrix }}/privkey.pem"
  129. matrix_coturn_container_additional_volumes:
  130. - src: "{{ matrix_ssl_config_dir_path }}"
  131. dst: "{{ matrix_ssl_config_dir_path }}"
  132. options: ro
  133. ######################################################################
  134. #
  135. # /matrix-coturn
  136. #
  137. ######################################################################
  138. ######################################################################
  139. #
  140. # matrix-dimension
  141. #
  142. ######################################################################
  143. matrix_dimension_enabled: false
  144. # Normally, matrix-nginx-proxy is enabled and nginx can reach Dimension over the container network.
  145. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  146. # the Dimension HTTP port to the local host (`127.0.0.1:8184`).
  147. matrix_dimension_container_expose_port: "{{ not matrix_nginx_proxy_enabled }}"
  148. ######################################################################
  149. #
  150. # /matrix-dimension
  151. #
  152. ######################################################################
  153. ######################################################################
  154. #
  155. # matrix-mailer
  156. #
  157. ######################################################################
  158. # By default, this playbook sets up a postfix mailer server (running in a container).
  159. # This is so that Synapse can send email reminders for unread messages.
  160. # Other services (like mxisd), also use the mailer.
  161. matrix_mailer_enabled: true
  162. ######################################################################
  163. #
  164. # /matrix-mailer
  165. #
  166. ######################################################################
  167. ######################################################################
  168. #
  169. # matrix-mxisd
  170. #
  171. ######################################################################
  172. # By default, this playbook installs the mxisd identity server on the same domain as Synapse (`matrix_server_fqn_matrix`).
  173. # If you wish to use the public identity servers (matrix.org, vector.im) instead of your own you may wish to disable this.
  174. matrix_mxisd_enabled: true
  175. # Normally, matrix-nginx-proxy is enabled and nginx can reach mxisd over the container network.
  176. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  177. # mxisd's web-server port to the local host (`127.0.0.1:8090`).
  178. matrix_mxisd_container_expose_port: "{{ not matrix_nginx_proxy_enabled }}"
  179. # We enable Synapse integration via its Postgres database by default.
  180. # When using another Identity store, you might wish to disable this and define
  181. # your own configuration in `matrix_mxisd_configuration_extension_yaml`.
  182. matrix_mxisd_synapsesql_enabled: true
  183. matrix_mxisd_synapsesql_type: postgresql
  184. matrix_mxisd_synapsesql_connection: //{{ matrix_synapse_database_host }}/{{ matrix_synapse_database_database }}?user={{ matrix_synapse_database_user | urlencode() }}&password={{ matrix_synapse_database_password | urlencode() }}
  185. matrix_mxisd_dns_overwrite_enabled: true
  186. matrix_mxisd_dns_overwrite_homeserver_client_name: "{{ matrix_server_fqn_matrix }}"
  187. matrix_mxisd_dns_overwrite_homeserver_client_value: "http://{{ 'matrix-corporal:41080' if matrix_corporal_enabled else 'matrix-synapse:8008' }}"
  188. # By default, we send mail through the `matrix-mailer` service.
  189. matrix_mxisd_threepid_medium_email_identity_from: "{{ matrix_mailer_sender_address }}"
  190. matrix_mxisd_threepid_medium_email_connectors_smtp_host: "matrix-mailer"
  191. matrix_mxisd_threepid_medium_email_connectors_smtp_port: 8025
  192. matrix_mxisd_threepid_medium_email_connectors_smtp_tls: 0
  193. matrix_mxisd_self_check_validate_certificates: "{{ false if matrix_ssl_retrieval_method == 'self-signed' else false }}"
  194. matrix_mxisd_systemd_wanted_services_list: |
  195. {{
  196. (['matrix-corporal.service'] if matrix_corporal_enabled else ['matrix-synapse.service'])
  197. +
  198. (['matrix-postgres.service'] if matrix_postgres_enabled else [])
  199. +
  200. (['matrix-mailer.service'] if matrix_mailer_enabled else [])
  201. }}
  202. ######################################################################
  203. #
  204. # /matrix-mxisd
  205. #
  206. ######################################################################
  207. ######################################################################
  208. #
  209. # matrix-nginx-proxy
  210. #
  211. ######################################################################
  212. # By default, this playbook sets up a reverse-proxy nginx proxy server on TCP ports 80, 443 and 8448.
  213. # This is fine if you're dedicating the whole server to Matrix.
  214. # If that's not the case, you may wish to disable this and take care of proxying yourself.
  215. matrix_nginx_proxy_enabled: true
  216. matrix_nginx_proxy_proxy_matrix_client_api_addr_with_container: "{{ 'matrix-corporal:41080' if matrix_corporal_enabled else 'matrix-synapse:8008' }}"
  217. matrix_nginx_proxy_proxy_matrix_client_api_addr_sans_container: "{{ '127.0.0.1:41080' if matrix_corporal_enabled else '127.0.0.1:8008' }}"
  218. matrix_nginx_proxy_proxy_matrix_client_api_client_max_body_size_mb: "{{ matrix_synapse_max_upload_size_mb }}"
  219. matrix_nginx_proxy_proxy_matrix_enabled: true
  220. matrix_nginx_proxy_proxy_riot_enabled: "{{ matrix_riot_web_enabled }}"
  221. matrix_nginx_proxy_proxy_dimension_enabled: "{{ matrix_dimension_enabled }}"
  222. matrix_nginx_proxy_proxy_matrix_corporal_api_enabled: "{{ matrix_corporal_enabled and matrix_corporal_http_api_enabled }}"
  223. matrix_nginx_proxy_proxy_matrix_corporal_api_addr_with_container: "matrix-corporal:41081"
  224. matrix_nginx_proxy_proxy_matrix_corporal_api_addr_sans_container: "127.0.0.1:41081"
  225. matrix_nginx_proxy_proxy_matrix_identity_api_enabled: "{{ matrix_mxisd_enabled }}"
  226. matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container: "matrix-mxisd:8090"
  227. matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container: "127.0.0.1:8090"
  228. # By default, we do TLS termination for the Matrix Federation API (port 8448) at matrix-nginx-proxy.
  229. matrix_nginx_proxy_proxy_matrix_federation_api_enabled: true
  230. matrix_nginx_proxy_proxy_matrix_federation_api_addr_with_container: "matrix-synapse:8048"
  231. matrix_nginx_proxy_proxy_matrix_federation_api_addr_sans_container: "127.0.0.1:8048"
  232. matrix_nginx_proxy_proxy_synapse_metrics: "{{ matrix_synapse_metrics_enabled }}"
  233. matrix_nginx_proxy_proxy_synapse_metrics_addr_with_container: "matrix-synapse:{{ matrix_synapse_metrics_port }}"
  234. matrix_nginx_proxy_proxy_synapse_metrics_addr_sans_container: "127.0.0.1:{{ matrix_synapse_metrics_port }}"
  235. matrix_nginx_proxy_proxy_matrix_user_directory_search_enabled: "{{ matrix_mxisd_enabled }}"
  236. matrix_nginx_proxy_proxy_matrix_user_directory_search_addr_with_container: "{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container }}"
  237. matrix_nginx_proxy_proxy_matrix_user_directory_search_addr_sans_container: "{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container }}"
  238. matrix_nginx_proxy_self_check_validate_certificates: "{{ false if matrix_ssl_retrieval_method == 'self-signed' else false }}"
  239. matrix_nginx_proxy_systemd_wanted_services_list: |
  240. {{
  241. (['matrix-synapse.service'])
  242. +
  243. (['matrix-corporal.service'] if matrix_corporal_enabled else [])
  244. +
  245. (['matrix-mxisd.service'] if matrix_mxisd_enabled else [])
  246. +
  247. (['matrix-riot-web.service'] if matrix_riot_web_enabled else [])
  248. }}
  249. matrix_ssl_domains_to_obtain_certificates_for: |
  250. {{
  251. ([matrix_server_fqn_matrix])
  252. +
  253. ([matrix_server_fqn_riot] if matrix_riot_web_enabled else [])
  254. +
  255. ([matrix_server_fqn_dimension] if matrix_dimension_enabled else [])
  256. +
  257. ([matrix_domain] if matrix_nginx_proxy_base_domain_serving_enabled else [])
  258. }}
  259. ######################################################################
  260. #
  261. # /matrix-nginx-proxy
  262. #
  263. ######################################################################
  264. ######################################################################
  265. #
  266. # matrix-postgres
  267. #
  268. ######################################################################
  269. matrix_postgres_enabled: true
  270. matrix_postgres_connection_hostname: "matrix-postgres"
  271. matrix_postgres_connection_username: "synapse"
  272. matrix_postgres_connection_password: "synapse-password"
  273. matrix_postgres_db_name: "homeserver"
  274. ######################################################################
  275. #
  276. # /matrix-postgres
  277. #
  278. ######################################################################
  279. ######################################################################
  280. #
  281. # matrix-riot-web
  282. #
  283. ######################################################################
  284. # By default, this playbook installs the Riot.IM web UI on the `matrix_server_fqn_riot` domain.
  285. # If you wish to connect to your Matrix server by other means, you may wish to disable this.
  286. matrix_riot_web_enabled: true
  287. # Normally, matrix-nginx-proxy is enabled and nginx can reach riot-web over the container network.
  288. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  289. # the riot-web HTTP port to the local host (`127.0.0.1:80`).
  290. matrix_riot_web_container_expose_port: "{{ not matrix_nginx_proxy_enabled }}"
  291. matrix_riot_web_default_hs_url: "{{ matrix_homeserver_url }}"
  292. matrix_riot_web_default_is_url: "{{ matrix_identity_server_url }}"
  293. # Use Dimension if enabled, otherwise fall back to Scalar
  294. matrix_riot_web_integrations_ui_url: "{{ matrix_dimension_integrations_ui_url if matrix_dimension_enabled else 'https://scalar.vector.im/' }}"
  295. matrix_riot_web_integrations_rest_url: "{{ matrix_dimension_integrations_rest_url if matrix_dimension_enabled else 'https://scalar.vector.im/api' }}"
  296. matrix_riot_web_integrations_widgets_urls: "{{ matrix_dimension_integrations_widgets_urls if matrix_dimension_enabled else ['https://scalar.vector.im/api'] }}"
  297. matrix_riot_web_integrations_jitsi_widget_url: "{{ matrix_dimension_integrations_jitsi_widget_url if matrix_dimension_enabled else 'https://scalar.vector.im/api/widgets/jitsi.html' }}"
  298. matrix_riot_web_self_check_validate_certificates: "{{ false if matrix_ssl_retrieval_method == 'self-signed' else false }}"
  299. matrix_riot_web_registration_enabled: "{{ matrix_synapse_enable_registration }}"
  300. matrix_riot_web_enable_presence_by_hs_url: |
  301. {{
  302. none
  303. if matrix_synapse_use_presence
  304. else {matrix_riot_web_default_hs_url: false}
  305. }}
  306. ######################################################################
  307. #
  308. # /matrix-riot-web
  309. #
  310. ######################################################################
  311. ######################################################################
  312. #
  313. # matrix-synapse
  314. #
  315. ######################################################################
  316. # When mxisd is enabled, we can use it instead of the default public Identity servers.
  317. matrix_synapse_trusted_third_party_id_servers: "{{ [matrix_server_fqn_matrix] if matrix_mxisd_enabled else matrix_synapse_id_servers_public }}"
  318. # Normally, matrix-nginx-proxy is enabled and nginx can reach Synapse over the container network.
  319. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose its ports
  320. # to the local host.
  321. #
  322. # For exposing the Matrix Client API's port (plain HTTP) to the local host (`127.0.0.1:8008`).
  323. matrix_synapse_container_expose_client_api_port: "{{ not matrix_nginx_proxy_enabled }}"
  324. # For exposing the Matrix Federation API's port (plain HTTP) to the local host (`127.0.0.1:8048`).
  325. matrix_synapse_container_expose_federation_api_port: "{{ not matrix_nginx_proxy_enabled }}"
  326. matrix_synapse_container_expose_metrics_port: "{{ not matrix_nginx_proxy_enabled }}"
  327. matrix_synapse_database_host: "{{ matrix_postgres_connection_hostname }}"
  328. matrix_synapse_database_user: "{{ matrix_postgres_connection_username }}"
  329. matrix_synapse_database_password: "{{ matrix_postgres_connection_password }}"
  330. matrix_synapse_database_database: "{{ matrix_postgres_db_name }}"
  331. # We do not enable TLS in Synapse by default.
  332. # TLS is handled by the matrix-nginx-proxy, which proxies the requests to Synapse.
  333. matrix_synapse_tls_federation_listener_enabled: false
  334. matrix_synapse_tls_certificate_path: ~
  335. matrix_synapse_tls_private_key_path: ~
  336. matrix_synapse_email_enabled: "{{ matrix_mailer_enabled }}"
  337. matrix_synapse_email_smtp_host: "matrix-mailer"
  338. matrix_synapse_email_smtp_port: 8025
  339. matrix_synapse_email_smtp_require_transport_security: false
  340. matrix_synapse_email_notif_from: "Matrix <{{ matrix_mailer_sender_address }}>"
  341. matrix_synapse_email_riot_base_url: "https://{{ matrix_server_fqn_riot }}"
  342. # Even if TURN doesn't support TLS (it does by default),
  343. # it doesn't hurt to try a secure connection anyway.
  344. matrix_synapse_turn_uris: |
  345. {{
  346. [
  347. 'turns:' + matrix_server_fqn_matrix + '?transport=udp',
  348. 'turns:' + matrix_server_fqn_matrix + '?transport=tcp',
  349. 'turn:' + matrix_server_fqn_matrix + '?transport=udp',
  350. 'turn:' + matrix_server_fqn_matrix + '?transport=tcp',
  351. ]
  352. if matrix_coturn_enabled
  353. else []
  354. }}
  355. matrix_synapse_turn_shared_secret: "{{ matrix_coturn_turn_static_auth_secret if matrix_coturn_enabled else '' }}"
  356. matrix_synapse_self_check_validate_certificates: "{{ false if matrix_ssl_retrieval_method == 'self-signed' else false }}"
  357. matrix_synapse_systemd_required_services_list: |
  358. {{
  359. (['docker.service'])
  360. +
  361. (['matrix-postgres.service'] if matrix_postgres_enabled else [])
  362. +
  363. (['matrix-goofys'] if matrix_s3_media_store_enabled else [])
  364. }}
  365. matrix_synapse_systemd_wanted_services_list: |
  366. {{
  367. (['matrix-coturn.service'] if matrix_coturn_enabled else [])
  368. +
  369. (['matrix-mailer.service'] if matrix_mailer_enabled else [])
  370. }}
  371. ######################################################################
  372. #
  373. # /matrix-synapse
  374. #
  375. ######################################################################