Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

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