Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

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