Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

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