Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

385 líneas
16 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-corporal
  42. #
  43. ######################################################################
  44. matrix_corporal_enabled: false
  45. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-corporal 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-corporal's web-server ports to the local host (`127.0.0.1:41080` and `127.0.0.1:41081`).
  48. matrix_corporal_container_expose_ports: "{{ not matrix_nginx_proxy_enabled }}"
  49. matrix_corporal_systemd_required_services_list: |
  50. {{
  51. (['docker.service'])
  52. +
  53. (['matrix-synapse.service'])
  54. }}
  55. matrix_corporal_matrix_homeserver_api_endpoint: "http://matrix-synapse:8008"
  56. matrix_corporal_matrix_auth_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret }}"
  57. matrix_corporal_matrix_registration_shared_secret: "{{ matrix_synapse_registration_shared_secret }}"
  58. ######################################################################
  59. #
  60. # /matrix-corporal
  61. #
  62. ######################################################################
  63. ######################################################################
  64. #
  65. # matrix-coturn
  66. #
  67. ######################################################################
  68. matrix_coturn_enabled: true
  69. ######################################################################
  70. #
  71. # /matrix-coturn
  72. #
  73. ######################################################################
  74. ######################################################################
  75. #
  76. # matrix-dimension
  77. #
  78. ######################################################################
  79. matrix_dimension_enabled: false
  80. # Normally, matrix-nginx-proxy is enabled and nginx can reach Dimension over the container network.
  81. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  82. # the Dimension HTTP port to the local host (`127.0.0.1:8184`).
  83. matrix_dimension_container_expose_port: "{{ not matrix_nginx_proxy_enabled }}"
  84. ######################################################################
  85. #
  86. # /matrix-dimension
  87. #
  88. ######################################################################
  89. ######################################################################
  90. #
  91. # matrix-mailer
  92. #
  93. ######################################################################
  94. # By default, this playbook sets up a postfix mailer server (running in a container).
  95. # This is so that Synapse can send email reminders for unread messages.
  96. # Other services (like mxisd), also use the mailer.
  97. matrix_mailer_enabled: true
  98. ######################################################################
  99. #
  100. # /matrix-mailer
  101. #
  102. ######################################################################
  103. ######################################################################
  104. #
  105. # matrix-mxisd
  106. #
  107. ######################################################################
  108. # By default, this playbook installs the mxisd identity server on the same domain as Synapse (`matrix_server_fqn_matrix`).
  109. # If you wish to use the public identity servers (matrix.org, vector.im) instead of your own you may wish to disable this.
  110. matrix_mxisd_enabled: true
  111. # Normally, matrix-nginx-proxy is enabled and nginx can reach mxisd over the container network.
  112. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  113. # mxisd's web-server port to the local host (`127.0.0.1:8090`).
  114. matrix_mxisd_container_expose_port: "{{ not matrix_nginx_proxy_enabled }}"
  115. # We enable Synapse integration via its Postgres database by default.
  116. # When using another Identity store, you might wish to disable this and define
  117. # your own configuration in `matrix_mxisd_configuration_extension_yaml`.
  118. matrix_mxisd_synapsesql_enabled: true
  119. matrix_mxisd_synapsesql_type: postgresql
  120. matrix_mxisd_synapsesql_connection: //{{ matrix_synapse_database_host }}/{{ matrix_synapse_database_database }}?user={{ matrix_synapse_database_user }}&password={{ matrix_synapse_database_password }}
  121. matrix_mxisd_dns_overwrite_enabled: true
  122. matrix_mxisd_dns_overwrite_homeserver_client_name: "{{ matrix_server_fqn_matrix }}"
  123. matrix_mxisd_dns_overwrite_homeserver_client_value: "http://{{ 'matrix-corporal:41080' if matrix_corporal_enabled else 'matrix-synapse:8008' }}"
  124. # By default, we send mail through the `matrix-mailer` service.
  125. matrix_mxisd_threepid_medium_email_identity_from: "{{ matrix_mailer_sender_address }}"
  126. matrix_mxisd_threepid_medium_email_connectors_smtp_host: "matrix-mailer"
  127. matrix_mxisd_threepid_medium_email_connectors_smtp_port: 8025
  128. matrix_mxisd_threepid_medium_email_connectors_smtp_tls: 0
  129. matrix_mxisd_systemd_wanted_services_list: |
  130. {{
  131. (['matrix-corporal.service'] if matrix_corporal_enabled else ['matrix-synapse.service'])
  132. +
  133. (['matrix-postgres.service'] if matrix_postgres_enabled else [])
  134. +
  135. (['matrix-mailer.service'] if matrix_mailer_enabled else [])
  136. }}
  137. ######################################################################
  138. #
  139. # /matrix-mxisd
  140. #
  141. ######################################################################
  142. ######################################################################
  143. #
  144. # matrix-nginx-proxy
  145. #
  146. ######################################################################
  147. # By default, this playbook sets up a reverse-proxy nginx proxy server on TCP ports 80, 443 and 8448.
  148. # This is fine if you're dedicating the whole server to Matrix.
  149. # If that's not the case, you may wish to disable this and take care of proxying yourself.
  150. matrix_nginx_proxy_enabled: true
  151. matrix_nginx_proxy_proxy_matrix_client_api_addr_with_container: "{{ 'matrix-corporal:41080' if matrix_corporal_enabled else 'matrix-synapse:8008' }}"
  152. 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' }}"
  153. matrix_nginx_proxy_proxy_matrix_client_api_client_max_body_size_mb: "{{ matrix_synapse_max_upload_size_mb }}"
  154. matrix_nginx_proxy_proxy_matrix_enabled: true
  155. matrix_nginx_proxy_proxy_riot_enabled: "{{ matrix_riot_web_enabled }}"
  156. matrix_nginx_proxy_proxy_dimension_enabled: "{{ matrix_dimension_enabled }}"
  157. matrix_nginx_proxy_proxy_matrix_corporal_api_enabled: "{{ matrix_corporal_enabled and matrix_corporal_http_api_enabled }}"
  158. matrix_nginx_proxy_proxy_matrix_corporal_api_addr_with_container: "matrix-corporal:41081"
  159. matrix_nginx_proxy_proxy_matrix_corporal_api_addr_sans_container: "127.0.0.1:41081"
  160. matrix_nginx_proxy_proxy_matrix_identity_api_enabled: "{{ matrix_mxisd_enabled }}"
  161. matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container: "matrix-mxisd:8090"
  162. matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container: "127.0.0.1:8090"
  163. # By default, we do TLS termination for the Matrix Federation API (port 8448) at matrix-nginx-proxy.
  164. matrix_nginx_proxy_proxy_matrix_federation_api_enabled: true
  165. matrix_nginx_proxy_proxy_matrix_federation_api_addr_with_container: "matrix-synapse:8048"
  166. matrix_nginx_proxy_proxy_matrix_federation_api_addr_sans_container: "127.0.0.1:8048"
  167. matrix_nginx_proxy_proxy_synapse_metrics: "{{ matrix_synapse_metrics_enabled }}"
  168. matrix_nginx_proxy_proxy_synapse_metrics_addr_with_container: "matrix-synapse:{{ matrix_synapse_metrics_port }}"
  169. matrix_nginx_proxy_proxy_synapse_metrics_addr_sans_container: "127.0.0.1:{{ matrix_synapse_metrics_port }}"
  170. matrix_nginx_proxy_proxy_matrix_user_directory_search_enabled: "{{ matrix_mxisd_enabled }}"
  171. matrix_nginx_proxy_proxy_matrix_user_directory_search_addr_with_container: "{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container }}"
  172. matrix_nginx_proxy_proxy_matrix_user_directory_search_addr_sans_container: "{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container }}"
  173. matrix_nginx_proxy_systemd_wanted_services_list: |
  174. {{
  175. (['matrix-synapse.service'])
  176. +
  177. (['matrix-corporal.service'] if matrix_corporal_enabled else [])
  178. +
  179. (['matrix-mxisd.service'] if matrix_mxisd_enabled else [])
  180. +
  181. (['matrix-riot-web.service'] if matrix_riot_web_enabled else [])
  182. }}
  183. matrix_ssl_domains_to_obtain_certificates_for: |
  184. {{
  185. ([matrix_server_fqn_matrix])
  186. +
  187. ([matrix_server_fqn_riot] if matrix_riot_web_enabled else [])
  188. +
  189. ([matrix_server_fqn_dimension] if matrix_dimension_enabled else [])
  190. +
  191. ([matrix_domain] if matrix_nginx_proxy_base_domain_serving_enabled else [])
  192. }}
  193. ######################################################################
  194. #
  195. # /matrix-nginx-proxy
  196. #
  197. ######################################################################
  198. ######################################################################
  199. #
  200. # matrix-postgres
  201. #
  202. ######################################################################
  203. matrix_postgres_enabled: true
  204. matrix_postgres_connection_hostname: "matrix-postgres"
  205. matrix_postgres_connection_username: "synapse"
  206. matrix_postgres_connection_password: "synapse-password"
  207. matrix_postgres_db_name: "homeserver"
  208. ######################################################################
  209. #
  210. # /matrix-postgres
  211. #
  212. ######################################################################
  213. ######################################################################
  214. #
  215. # matrix-riot-web
  216. #
  217. ######################################################################
  218. # By default, this playbook installs the Riot.IM web UI on the `matrix_server_fqn_riot` domain.
  219. # If you wish to connect to your Matrix server by other means, you may wish to disable this.
  220. matrix_riot_web_enabled: true
  221. # Normally, matrix-nginx-proxy is enabled and nginx can reach riot-web over the container network.
  222. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  223. # the riot-web HTTP port to the local host (`127.0.0.1:80`).
  224. matrix_riot_web_container_expose_port: "{{ not matrix_nginx_proxy_enabled }}"
  225. matrix_riot_web_default_hs_url: "{{ matrix_homeserver_url }}"
  226. matrix_riot_web_default_is_url: "{{ matrix_identity_server_url }}"
  227. # Use Dimension if enabled, otherwise fall back to Scalar
  228. matrix_riot_web_integrations_ui_url: "{{ matrix_dimension_integrations_ui_url if matrix_dimension_enabled else 'https://scalar.vector.im/' }}"
  229. matrix_riot_web_integrations_rest_url: "{{ matrix_dimension_integrations_rest_url if matrix_dimension_enabled else 'https://scalar.vector.im/api' }}"
  230. matrix_riot_web_integrations_widgets_urls: "{{ matrix_dimension_integrations_widgets_urls if matrix_dimension_enabled else ['https://scalar.vector.im/api'] }}"
  231. 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' }}"
  232. ######################################################################
  233. #
  234. # /matrix-riot-web
  235. #
  236. ######################################################################
  237. ######################################################################
  238. #
  239. # matrix-synapse
  240. #
  241. ######################################################################
  242. # When mxisd is enabled, we can use it instead of the default public Identity servers.
  243. matrix_synapse_trusted_third_party_id_servers: "{{ [matrix_server_fqn_matrix] if matrix_mxisd_enabled else matrix_synapse_id_servers_public }}"
  244. # Normally, matrix-nginx-proxy is enabled and nginx can reach Synapse over the container network.
  245. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose its ports
  246. # to the local host.
  247. #
  248. # For exposing the Matrix Client API's port (plain HTTP) to the local host (`127.0.0.1:8008`).
  249. matrix_synapse_container_expose_client_api_port: "{{ not matrix_nginx_proxy_enabled }}"
  250. # For exposing the Matrix Federation API's port (plain HTTP) to the local host (`127.0.0.1:8048`).
  251. matrix_synapse_container_expose_federation_api_port: "{{ not matrix_nginx_proxy_enabled }}"
  252. matrix_synapse_container_expose_metrics_port: "{{ not matrix_nginx_proxy_enabled }}"
  253. matrix_synapse_database_host: "{{ matrix_postgres_connection_hostname }}"
  254. matrix_synapse_database_user: "{{ matrix_postgres_connection_username }}"
  255. matrix_synapse_database_password: "{{ matrix_postgres_connection_password }}"
  256. matrix_synapse_database_database: "{{ matrix_postgres_db_name }}"
  257. # We do not enable TLS in Synapse by default.
  258. # TLS is handled by the matrix-nginx-proxy, which proxies the requests to Synapse.
  259. matrix_synapse_tls_federation_listener_enabled: false
  260. matrix_synapse_tls_certificate_path: ~
  261. matrix_synapse_tls_private_key_path: ~
  262. matrix_synapse_email_enabled: "{{ matrix_mailer_enabled }}"
  263. matrix_synapse_email_smtp_host: "matrix-mailer"
  264. matrix_synapse_email_smtp_port: 8025
  265. matrix_synapse_email_smtp_require_transport_security: false
  266. matrix_synapse_email_notif_from: "Matrix <{{ matrix_mailer_sender_address }}>"
  267. matrix_synapse_email_riot_base_url: "https://{{ matrix_server_fqn_riot }}"
  268. matrix_synapse_turn_uris: |
  269. {{
  270. [
  271. 'turn:' + matrix_server_fqn_matrix + ':3478?transport=udp',
  272. 'turn:' + matrix_server_fqn_matrix + ':3478?transport=tcp',
  273. ]
  274. if matrix_coturn_enabled
  275. else []
  276. }}
  277. matrix_synapse_turn_shared_secret: "{{ matrix_coturn_turn_static_auth_secret if matrix_coturn_enabled else '' }}"
  278. matrix_synapse_systemd_required_services_list: |
  279. {{
  280. (['docker.service'])
  281. +
  282. (['matrix-postgres.service'] if matrix_postgres_enabled else [])
  283. +
  284. (['matrix-goofys'] if matrix_s3_media_store_enabled else [])
  285. }}
  286. matrix_synapse_systemd_wanted_services_list: |
  287. {{
  288. (['matrix-coturn.service'] if matrix_coturn_enabled else [])
  289. +
  290. (['matrix-mailer.service'] if matrix_mailer_enabled else [])
  291. }}
  292. ######################################################################
  293. #
  294. # /matrix-synapse
  295. #
  296. ######################################################################