Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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