Matrix Docker Ansible eploy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

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