Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

5844 wiersze
324 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.example.com`).
  10. ########################################################################
  11. # #
  12. # Playbook #
  13. # #
  14. ########################################################################
  15. # Controls whether to install Docker or not
  16. # Also see `devture_docker_sdk_for_python_installation_enabled`.
  17. matrix_playbook_docker_installation_enabled: true
  18. matrix_playbook_docker_installation_daemon_options: "{{ matrix_playbook_docker_installation_daemon_options_auto | combine(matrix_playbook_docker_installation_daemon_options_custom, recursive=True) }}"
  19. # Since Docker 27.0.1, Docker daemon options do not need to be changed to enable IPv6 support on the daemon side.
  20. # See: https://docs.docker.com/engine/release-notes/27/#ipv6
  21. # We only enable `ip6tables` and `experimental` for people who explicitly request it (perhaps due to running an old Docker version).
  22. #
  23. # Despite IPv6-enablement at the Docker level being a thing, for IPv6 to work for containers
  24. # networks need to be created with IPv6 explicitly enabled.
  25. # This is controlled by the `devture_systemd_docker_base_ipv6_enabled` variable and it's up to the various roles to
  26. # respect this variable when creating their networks.
  27. matrix_playbook_docker_installation_daemon_options_auto: |
  28. {{
  29. ({'experimental': true, 'ip6tables': true} if devture_systemd_docker_base_ipv6_daemon_options_changing_enabled else {})
  30. }}
  31. matrix_playbook_docker_installation_daemon_options_custom: {}
  32. matrix_playbook_docker_installation_daemon_options_file_path: /etc/docker/daemon.json
  33. # Controls whether to attach Traefik labels to services.
  34. # This is separate from `traefik_enabled`, because you may wish to disable Traefik installation by the playbook,
  35. # yet still use Traefik installed in another way.
  36. matrix_playbook_traefik_labels_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  37. matrix_playbook_reverse_proxy_container_network: "{{ traefik_container_network if traefik_enabled else 'traefik' if matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] else '' }}"
  38. matrix_playbook_reverse_proxy_hostname: "{{ traefik_identifier if traefik_enabled else 'traefik' }}"
  39. matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled: "{{ traefik_config_http_middlewares_compression_enabled if (traefik_enabled and traefik_config_http_middlewares_compression_enabled) else false }}"
  40. matrix_playbook_reverse_proxy_traefik_middleware_compression_name: "{{ (traefik_config_http_middlewares_compression_middleware_name + '@file') if traefik_enabled else '' }}"
  41. # A separate Matrix Federation entrypoint is always enabled, unless the federation port matches one of the ports for existing (default) entrypoints
  42. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_enabled: "{{ matrix_federation_public_port not in [traefik_config_entrypoint_web_port, traefik_config_entrypoint_web_secure_port] }}"
  43. # We only enable HTTP/3 on the federation entrypoint if the main web-secure entrypoint has it enabled.
  44. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_enabled: "{{ traefik_config_entrypoint_web_secure_http3_enabled }}"
  45. # `traefik_config_entrypoint_web_secure_enabled` is the variable we currently follow to determine if SSL is enabled or not.
  46. # `matrix_playbook_ssl_enabled` is merely an indicator if (when looked at it publicly), the server supports SSL or not,
  47. # and affects how services configure their public URLs.
  48. matrix_federation_traefik_entrypoint_tls: "{{ traefik_config_entrypoint_web_secure_enabled }}"
  49. ########################################################################
  50. # #
  51. # /Playbook #
  52. # #
  53. ########################################################################
  54. ########################################################################
  55. # #
  56. # aux #
  57. # #
  58. ########################################################################
  59. aux_directory_default_owner: "{{ matrix_user_name }}"
  60. aux_directory_default_group: "{{ matrix_group_name }}"
  61. aux_file_default_owner: "{{ matrix_user_name }}"
  62. aux_file_default_group: "{{ matrix_group_name }}"
  63. ########################################################################
  64. # #
  65. # /aux #
  66. # #
  67. ########################################################################
  68. ########################################################################
  69. # #
  70. # base #
  71. # #
  72. ########################################################################
  73. matrix_homeserver_container_extra_arguments_auto: |
  74. {{
  75. (['--mount type=bind,src=' + matrix_appservice_discord_config_path + '/registration.yaml,dst=/matrix-appservice-discord-registration.yaml,ro'] if matrix_appservice_discord_enabled else [])
  76. +
  77. (['--mount type=bind,src=' + matrix_appservice_draupnir_for_all_config_path + '/draupnir-for-all-registration.yaml,dst=/matrix-appservice-draupnir-for-all-registration.yaml,ro'] if matrix_appservice_draupnir_for_all_enabled else [])
  78. +
  79. (['--mount type=bind,src=' + matrix_appservice_double_puppet_config_path + '/registration.yaml,dst=/matrix-appservice-double-puppet-registration.yaml,ro'] if matrix_appservice_double_puppet_enabled else [])
  80. +
  81. (['--mount type=bind,src=' + matrix_appservice_irc_config_path + '/registration.yaml,dst=/matrix-appservice-irc-registration.yaml,ro'] if matrix_appservice_irc_enabled else [])
  82. +
  83. (['--mount type=bind,src=' + matrix_appservice_kakaotalk_config_path + '/registration.yaml,dst=/matrix-appservice-kakaotalk-registration.yaml,ro'] if matrix_appservice_kakaotalk_enabled else [])
  84. +
  85. (['--mount type=bind,src=' + matrix_appservice_slack_config_path + '/slack-registration.yaml,dst=/matrix-appservice-slack-registration.yaml,ro'] if matrix_appservice_slack_enabled else [])
  86. +
  87. (['--mount type=bind,src=' + matrix_beeper_linkedin_config_path + '/registration.yaml,dst=/matrix-beeper-linkedin-registration.yaml,ro'] if matrix_beeper_linkedin_enabled else [])
  88. +
  89. (['--mount type=bind,src=' + matrix_wechat_config_path + '/registration.yaml,dst=/matrix-wechat-registration.yaml,ro'] if matrix_wechat_enabled else [])
  90. +
  91. (['--mount type=bind,src=' + matrix_heisenbridge_base_path + '/registration.yaml,dst=/heisenbridge-registration.yaml,ro'] if matrix_heisenbridge_enabled else [])
  92. +
  93. (['--mount type=bind,src=' + matrix_hookshot_base_path + '/registration.yml,dst=/hookshot-registration.yml,ro'] if matrix_hookshot_enabled else [])
  94. +
  95. (['--mount type=bind,src=' + matrix_mautrix_bluesky_config_path + '/registration.yaml,dst=/matrix-mautrix-bluesky-registration.yaml,ro'] if matrix_mautrix_bluesky_enabled else [])
  96. +
  97. (['--mount type=bind,src=' + matrix_mautrix_discord_config_path + '/registration.yaml,dst=/matrix-mautrix-discord-registration.yaml,ro'] if matrix_mautrix_discord_enabled else [])
  98. +
  99. (['--mount type=bind,src=' + matrix_mautrix_slack_config_path + '/registration.yaml,dst=/matrix-mautrix-slack-registration.yaml,ro'] if matrix_mautrix_slack_enabled else [])
  100. +
  101. (['--mount type=bind,src=' + matrix_mautrix_googlechat_config_path + '/registration.yaml,dst=/matrix-mautrix-googlechat-registration.yaml,ro'] if matrix_mautrix_googlechat_enabled else [])
  102. +
  103. (['--mount type=bind,src=' + matrix_mautrix_signal_config_path + '/registration.yaml,dst=/matrix-mautrix-signal-registration.yaml,ro'] if matrix_mautrix_signal_enabled else [])
  104. +
  105. (['--mount type=bind,src=' + matrix_mautrix_meta_messenger_config_path + '/registration.yaml,dst=/matrix-mautrix-meta-messenger-registration.yaml,ro'] if matrix_mautrix_meta_messenger_enabled else [])
  106. +
  107. (['--mount type=bind,src=' + matrix_mautrix_meta_instagram_config_path + '/registration.yaml,dst=/matrix-mautrix-meta-instagram-registration.yaml,ro'] if matrix_mautrix_meta_instagram_enabled else [])
  108. +
  109. (['--mount type=bind,src=' + matrix_mautrix_telegram_config_path + '/registration.yaml,dst=/matrix-mautrix-telegram-registration.yaml,ro'] if matrix_mautrix_telegram_enabled else [])
  110. +
  111. (['--mount type=bind,src=' + matrix_mautrix_twitter_config_path + '/registration.yaml,dst=/matrix-mautrix-twitter-registration.yaml,ro'] if matrix_mautrix_twitter_enabled else [])
  112. +
  113. (['--mount type=bind,src=' + matrix_mautrix_gmessages_config_path + '/registration.yaml,dst=/matrix-mautrix-gmessages-registration.yaml,ro'] if matrix_mautrix_gmessages_enabled else [])
  114. +
  115. (['--mount type=bind,src=' + matrix_mautrix_whatsapp_config_path + '/registration.yaml,dst=/matrix-mautrix-whatsapp-registration.yaml,ro'] if matrix_mautrix_whatsapp_enabled else [])
  116. +
  117. (['--mount type=bind,src=' + matrix_mautrix_wsproxy_config_path + '/androidsms-registration.yaml,dst=/matrix-mautrix-androidsms-registration.yaml,ro'] if matrix_mautrix_wsproxy_enabled else [])
  118. +
  119. (['--mount type=bind,src=' + matrix_mautrix_wsproxy_config_path + '/imessage-registration.yaml,dst=/matrix-mautrix-imessage-registration.yaml,ro'] if matrix_mautrix_wsproxy_enabled else [])
  120. +
  121. (['--mount type=bind,src=' + matrix_mx_puppet_groupme_config_path + '/registration.yaml,dst=/matrix-mx-puppet-groupme-registration.yaml,ro'] if matrix_mx_puppet_groupme_enabled else [])
  122. +
  123. (['--mount type=bind,src=' + matrix_mx_puppet_steam_config_path + '/registration.yaml,dst=/matrix-mx-puppet-steam-registration.yaml,ro'] if matrix_mx_puppet_steam_enabled else [])
  124. +
  125. (['--mount type=bind,src=' + matrix_sms_bridge_config_path + '/registration.yaml,dst=/matrix-sms-bridge-registration.yaml,ro'] if matrix_sms_bridge_enabled else [])
  126. +
  127. (['--mount type=bind,src=' + matrix_steam_bridge_config_path + '/registration.yaml,dst=/matrix-steam-bridge-registration.yaml,ro'] if matrix_steam_bridge_enabled else [])
  128. +
  129. (['--mount type=bind,src=' + matrix_cactus_comments_app_service_config_file + ',dst=/matrix-cactus-comments.yaml,ro'] if matrix_cactus_comments_enabled else [])
  130. }}
  131. matrix_homeserver_app_service_config_files_auto: |
  132. {{
  133. (['/matrix-appservice-discord-registration.yaml'] if matrix_appservice_discord_enabled else [])
  134. +
  135. (['/matrix-appservice-draupnir-for-all-registration.yaml'] if matrix_appservice_draupnir_for_all_enabled else [])
  136. +
  137. (['/matrix-appservice-double-puppet-registration.yaml'] if matrix_appservice_double_puppet_enabled else [])
  138. +
  139. (['/matrix-appservice-irc-registration.yaml'] if matrix_appservice_irc_enabled else [])
  140. +
  141. (['/matrix-appservice-kakaotalk-registration.yaml'] if matrix_appservice_kakaotalk_enabled else [])
  142. +
  143. (['/matrix-appservice-slack-registration.yaml'] if matrix_appservice_slack_enabled else [])
  144. +
  145. (['/matrix-beeper-linkedin-registration.yaml'] if matrix_beeper_linkedin_enabled else [])
  146. +
  147. (['/matrix-wechat-registration.yaml'] if matrix_wechat_enabled else [])
  148. +
  149. (['/heisenbridge-registration.yaml'] if matrix_heisenbridge_enabled else [])
  150. +
  151. (['/hookshot-registration.yml'] if matrix_hookshot_enabled else [])
  152. +
  153. (['/matrix-mautrix-bluesky-registration.yaml'] if matrix_mautrix_bluesky_enabled else [])
  154. +
  155. (['/matrix-mautrix-discord-registration.yaml'] if matrix_mautrix_discord_enabled else [])
  156. +
  157. (['/matrix-mautrix-slack-registration.yaml'] if matrix_mautrix_slack_enabled else [])
  158. +
  159. (['/matrix-mautrix-googlechat-registration.yaml'] if matrix_mautrix_googlechat_enabled else [])
  160. +
  161. (['/matrix-mautrix-signal-registration.yaml'] if matrix_mautrix_signal_enabled else [])
  162. +
  163. (['/matrix-mautrix-meta-messenger-registration.yaml'] if matrix_mautrix_meta_messenger_enabled else [])
  164. +
  165. (['/matrix-mautrix-meta-instagram-registration.yaml'] if matrix_mautrix_meta_instagram_enabled else [])
  166. +
  167. (['/matrix-mautrix-telegram-registration.yaml'] if matrix_mautrix_telegram_enabled else [])
  168. +
  169. (['/matrix-mautrix-twitter-registration.yaml'] if matrix_mautrix_twitter_enabled else [])
  170. +
  171. (['/matrix-mautrix-gmessages-registration.yaml'] if matrix_mautrix_gmessages_enabled else [])
  172. +
  173. (['/matrix-mautrix-whatsapp-registration.yaml'] if matrix_mautrix_whatsapp_enabled else [])
  174. +
  175. (['/matrix-mautrix-androidsms-registration.yaml'] if matrix_mautrix_wsproxy_enabled else [])
  176. +
  177. (['/matrix-mautrix-imessage-registration.yaml'] if matrix_mautrix_wsproxy_enabled else [])
  178. +
  179. (['/matrix-mx-puppet-groupme-registration.yaml'] if matrix_mx_puppet_groupme_enabled else [])
  180. +
  181. (['/matrix-mx-puppet-steam-registration.yaml'] if matrix_mx_puppet_steam_enabled else [])
  182. +
  183. (['/matrix-sms-bridge-registration.yaml'] if matrix_sms_bridge_enabled else [])
  184. +
  185. (['/matrix-cactus-comments.yaml'] if matrix_cactus_comments_enabled else [])
  186. +
  187. (['/matrix-steam-bridge-registration.yaml'] if matrix_steam_bridge_enabled else [])
  188. }}
  189. matrix_addons_homeserver_container_network: "{{ matrix_playbook_reverse_proxy_container_network if matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled else matrix_homeserver_container_network }}"
  190. matrix_addons_homeserver_client_api_url: "{{ ('http://' + matrix_playbook_reverse_proxy_hostname + ':' + matrix_playbook_internal_matrix_client_api_traefik_entrypoint_port | string) if matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled else matrix_homeserver_container_url }}"
  191. matrix_addons_homeserver_systemd_services_list: "{{ ([traefik_identifier + '.service'] if matrix_playbook_reverse_proxy_type == 'playbook-managed-traefik' else []) if matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled else matrix_homeserver_systemd_services_list }}"
  192. ########################################################################
  193. # #
  194. # /base #
  195. # #
  196. ########################################################################
  197. ########################################################################
  198. # #
  199. # com.devture.ansible.role.systemd_service_manager #
  200. # #
  201. ########################################################################
  202. # This list is not exhaustive and final.
  203. # Synapse workers are still injected into the list at runtime.
  204. # Additional JVB workers (jitsi_jvb.yml — roles/galaxy/jitsi/tasks/init_additional_jvb.yml) override this variable at runtime as well.
  205. #
  206. # Priority levels are like this:
  207. # - Traefik starts first with a level of 250, so that:
  208. # - it can get an early start on obtaining SSL certificates and routing to other services as soon as they start (later)
  209. # - so that addon services (starting later) can communicte with the homeserver via Traefik's internal entrypoint
  210. # (see `matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled`)
  211. # - core services (the homeserver) get a level of ~1000
  212. # - services that the homeserver depends on (database, Redis, ntfy, coturn, etc.) get a lower level — between 500 and 1000
  213. # - coturn gets a higher priority level (= starts later) if `devture_systemd_service_manager_service_restart_mode == 'one-by-one'` to intentionally delay it, because:
  214. # - starting services one by one means that the service manager role waits for each service to fully start before proceeding to the next one
  215. # - if coturn has a lower priority than the homeserver, it would be started before it
  216. # - since coturn is started before the homeserver, there's no container label telling Traefik to get a `matrix.example.com` certificate
  217. # - thus, coturn would spin and wait for a certificate until it fails. We'd get a playbook failure due to it, but service manager will proceed to start all other services anyway.
  218. # - only later, when the homeserver actually starts, would that certificate be fetched and dumped
  219. # - this is not a problem with `all-at-once` (default) or `priority-batched` (services start concurrently),
  220. # or with `clean-stop-start` (everything stops first, then starts in priority order — coturn at 900 is fine)
  221. # - reverse-proxying services get level 3000
  222. # - Matrix utility services (bridges, bots) get a level of 2000/2200, so that:
  223. # - they can start before the reverse-proxy
  224. # - so that, when the reverse-proxy is up (Matrix is up), all bots and bridges can be interacted with
  225. # - monitoring services (Prometheus, Grafana, …) get a level of 4000 — they can start later than all-of-Matrix
  226. # - services which aren't time-sensitive (various crons and timers) get a level of 5000 — they can start later than all-of-Matrix
  227. devture_systemd_service_manager_services_list_auto: |
  228. {{
  229. ([{'name': (backup_borg_identifier + '.timer'), 'priority': 5000, 'groups': ['matrix', 'backup', 'borg']}] if backup_borg_enabled else [])
  230. +
  231. ([{'name': 'matrix-alertmanager-receiver.service', 'priority': 2200, 'groups': ['matrix', 'alertmanager-receiver']}] if matrix_alertmanager_receiver_enabled else [])
  232. +
  233. ([{'name': 'matrix-authentication-service.service', 'priority': 2200, 'groups': ['matrix', 'matrix-authentication-service']}] if matrix_authentication_service_enabled else [])
  234. +
  235. ([{'name': 'matrix-bot-buscarron.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'buscarron', 'bot-buscarron']}] if matrix_bot_buscarron_enabled else [])
  236. +
  237. ([{'name': 'matrix-bot-baibot.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'baibot', 'bot-baibot']}] if matrix_bot_baibot_enabled else [])
  238. +
  239. ([{'name': 'matrix-bot-honoroit.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'honoroit', 'bot-honoroit']}] if matrix_bot_honoroit_enabled else [])
  240. +
  241. ([{'name': 'matrix-bot-matrix-registration-bot.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'registration-bot', 'bot-matrix-registration-bot']}] if matrix_bot_matrix_registration_bot_enabled else [])
  242. +
  243. ([{'name': 'matrix-bot-matrix-reminder-bot.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'reminder-bot', 'bot-matrix-reminder-bot']}] if matrix_bot_matrix_reminder_bot_enabled else [])
  244. +
  245. ([{'name': 'matrix-bot-maubot.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'maubot', 'bot-maubot']}] if matrix_bot_maubot_enabled else [])
  246. +
  247. ([{'name': 'matrix-bot-mjolnir.service', 'priority': 4000, 'groups': ['matrix', 'bots', 'mjolnir', 'bot-mjolnir']}] if matrix_bot_mjolnir_enabled else [])
  248. +
  249. ([{'name': 'matrix-bot-draupnir.service', 'priority': 4000, 'groups': ['matrix', 'bots', 'draupnir', 'bot-draupnir']}] if matrix_bot_draupnir_enabled else [])
  250. +
  251. ([{'name': 'matrix-appservice-discord.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'appservice-discord']}] if matrix_appservice_discord_enabled else [])
  252. +
  253. ([{'name': 'matrix-appservice-draupnir-for-all.service', 'priority': 4000, 'groups': ['matrix', 'bridges', 'draupnir-for-all', 'appservice-draupnir-for-all']}] if matrix_appservice_draupnir_for_all_enabled else [])
  254. +
  255. ([{'name': 'matrix-appservice-irc.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'appservice-irc']}] if matrix_appservice_irc_enabled else [])
  256. +
  257. ([{'name': 'matrix-appservice-kakaotalk.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'appservice-kakaotalk']}] if matrix_appservice_kakaotalk_enabled else [])
  258. +
  259. ([{'name': 'matrix-appservice-kakaotalk-node.service', 'priority': 1900, 'groups': ['matrix', 'bridges', 'appservice-kakaotalk', 'appservice-kakaotalk-node']}] if matrix_appservice_kakaotalk_enabled else [])
  260. +
  261. ([{'name': 'matrix-appservice-slack.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'appservice-slack']}] if matrix_appservice_slack_enabled else [])
  262. +
  263. ([{'name': 'matrix-beeper-linkedin.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'beeper-linkedin']}] if matrix_beeper_linkedin_enabled else [])
  264. +
  265. ([{'name': 'matrix-wechat.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'wechat']}] if matrix_wechat_enabled else [])
  266. +
  267. ([{'name': 'matrix-wechat-agent.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'wechat']}] if matrix_wechat_enabled else [])
  268. +
  269. ([{'name': 'matrix-heisenbridge.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'heisenbridge']}] if matrix_heisenbridge_enabled else [])
  270. +
  271. ([{'name': 'matrix-hookshot.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'hookshot', 'bridge-hookshot']}] if matrix_hookshot_enabled else [])
  272. +
  273. ([{'name': 'matrix-mautrix-bluesky.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-bluesky']}] if matrix_mautrix_bluesky_enabled else [])
  274. +
  275. ([{'name': 'matrix-mautrix-discord.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-discord']}] if matrix_mautrix_discord_enabled else [])
  276. +
  277. ([{'name': 'matrix-mautrix-slack.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-slack']}] if matrix_mautrix_slack_enabled else [])
  278. +
  279. ([{'name': 'matrix-mautrix-googlechat.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-googlechat']}] if matrix_mautrix_googlechat_enabled else [])
  280. +
  281. ([{'name': 'matrix-mautrix-signal.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-signal', 'mautrix-signal']}] if matrix_mautrix_signal_enabled else [])
  282. +
  283. ([{'name': (matrix_mautrix_meta_messenger_identifier + '.service'), 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-meta', 'mautrix-meta-messenger']}] if matrix_mautrix_meta_messenger_enabled else [])
  284. +
  285. ([{'name': (matrix_mautrix_meta_instagram_identifier + '.service'), 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-meta', 'mautrix-meta-instagram']}] if matrix_mautrix_meta_instagram_enabled else [])
  286. +
  287. ([{'name': 'matrix-mautrix-telegram.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-telegram']}] if matrix_mautrix_telegram_enabled else [])
  288. +
  289. ([{'name': 'matrix-mautrix-twitter.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-twitter']}] if matrix_mautrix_twitter_enabled else [])
  290. +
  291. ([{'name': 'matrix-mautrix-gmessages.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-gmessages']}] if matrix_mautrix_gmessages_enabled else [])
  292. +
  293. ([{'name': 'matrix-mautrix-whatsapp.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-whatsapp']}] if matrix_mautrix_whatsapp_enabled else [])
  294. +
  295. ([{'name': 'matrix-mautrix-wsproxy.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-wsproxy']}] if matrix_mautrix_wsproxy_enabled else [])
  296. +
  297. ([{'name': 'matrix-mautrix-wsproxy-syncproxy.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-wsproxy-syncproxy']}] if matrix_mautrix_wsproxy_enabled else [])
  298. +
  299. ([{'name': 'matrix-mx-puppet-groupme.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mx-puppet-groupme']}] if matrix_mx_puppet_groupme_enabled else [])
  300. +
  301. ([{'name': 'matrix-mx-puppet-steam.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mx-puppet-steam']}] if matrix_mx_puppet_steam_enabled else [])
  302. +
  303. ([{'name': 'matrix-postmoogle.service', 'priority': 2200, 'groups': ['matrix', 'bridges', 'postmoogle']}] if matrix_postmoogle_enabled else [])
  304. +
  305. ([{'name': 'matrix-sms-bridge.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'sms']}] if matrix_sms_bridge_enabled else [])
  306. +
  307. ([{'name': 'matrix-steam-bridge.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'matrix-steam-bridge']}] if matrix_steam_bridge_enabled else [])
  308. +
  309. ([{'name': 'matrix-cactus-comments.service', 'priority': 2000, 'groups': ['matrix', 'cactus-comments']}] if matrix_cactus_comments_enabled else [])
  310. +
  311. ([{'name': 'matrix-cactus-comments-client.service', 'priority': 2000, 'groups': ['matrix', 'cactus-comments-client']}] if matrix_cactus_comments_client_enabled else [])
  312. +
  313. ([{'name': (cinny_identifier + '.service'), 'priority': 2000, 'groups': ['matrix', 'clients', 'cinny', 'client-cinny']}] if cinny_enabled else [])
  314. +
  315. ([{'name': 'matrix-client-element.service', 'priority': 2000, 'groups': ['matrix', 'clients', 'element', 'client-element']}] if matrix_client_element_enabled else [])
  316. +
  317. ([{'name': 'matrix-client-hydrogen.service', 'priority': 2000, 'groups': ['matrix', 'clients', 'hydrogen', 'client-hydrogen']}] if matrix_client_hydrogen_enabled else [])
  318. +
  319. ([{'name': 'matrix-client-schildichat.service', 'priority': 2000, 'groups': ['matrix', 'clients', 'schildichat', 'client-schildichat']}] if matrix_client_schildichat_enabled else [])
  320. +
  321. ([{'name': 'matrix-client-fluffychat.service', 'priority': 2000, 'groups': ['matrix', 'clients', 'fluffychat', 'client-fluffychat']}] if matrix_client_fluffychat_enabled else [])
  322. +
  323. ([{'name': ('matrix-' + matrix_homeserver_implementation + '.service'), 'priority': 1000, 'groups': ['matrix', 'homeservers', matrix_homeserver_implementation]}] if matrix_homeserver_enabled else [])
  324. +
  325. ([{'name': 'matrix-corporal.service', 'priority': 1500, 'groups': ['matrix', 'corporal']}] if matrix_corporal_enabled else [])
  326. +
  327. ([{'name': (coturn_identifier + '.service'), 'priority': (1500 if devture_systemd_service_manager_service_restart_mode == 'one-by-one' else 900), 'groups': ['matrix', 'coturn']}] if coturn_enabled else [])
  328. +
  329. ([{'name': 'matrix-matrixto.service', 'priority': 4000, 'groups': ['matrix', 'matrixto']}] if matrix_matrixto_enabled else [])
  330. +
  331. ([{'name': 'matrix-rageshake.service', 'priority': 4000, 'groups': ['matrix', 'rageshake']}] if matrix_rageshake_enabled else [])
  332. +
  333. ([{'name': (coturn_identifier + '-reload.timer'), 'priority': 5000, 'groups': ['matrix', 'coturn']}] if (coturn_enabled and coturn_tls_enabled) else [])
  334. +
  335. ([{'name': 'matrix-dimension.service', 'priority': 4000, 'groups': ['matrix', 'integration-managers', 'dimension']}] if matrix_dimension_enabled else [])
  336. +
  337. ([{'name': (ddclient_identifier + '.service'), 'priority': 5000, 'groups': ['matrix', 'ddclient', 'dynamic-dns']}] if ddclient_enabled else [])
  338. +
  339. ([{'name': (etherpad_identifier + '.service'), 'priority': 4000, 'groups': ['matrix', 'etherpad']}] if etherpad_enabled else [])
  340. +
  341. ([{'name': (grafana_identifier + '.service'), 'priority': 4000, 'groups': ['matrix', 'monitoring', 'grafana']}] if grafana_enabled else [])
  342. +
  343. ([{'name': (jitsi_identifier + '-web.service'), 'priority': 4200, 'groups': ['matrix', 'jitsi', 'jitsi-web']}] if jitsi_enabled else [])
  344. +
  345. ([{'name': (jitsi_identifier + '-prosody.service'), 'priority': 4000, 'groups': ['matrix', 'jitsi', 'jitsi-prosody']}] if jitsi_enabled else [])
  346. +
  347. ([{'name': (jitsi_identifier + '-jicofo.service'), 'priority': 4100, 'groups': ['matrix', 'jitsi', 'jitsi-jicofo']}] if jitsi_enabled else [])
  348. +
  349. ([{'name': (jitsi_identifier + '-jvb.service'), 'priority': 4100, 'groups': ['matrix', 'jitsi', 'jitsi-jvb']}] if jitsi_enabled else [])
  350. +
  351. ([{'name': 'matrix-ldap-registration-proxy.service', 'priority': 2000, 'groups': ['matrix', 'ldap-registration-proxy']}] if matrix_ldap_registration_proxy_enabled else [])
  352. +
  353. ([{'name': (matrix_media_repo_identifier + '.service'), 'priority': 4000, 'groups': ['matrix', 'matrix-media-repo']}] if matrix_media_repo_enabled else [])
  354. +
  355. ([{'name': (exim_relay_identifier ~ '.service'), 'priority': 800, 'groups': ['matrix', 'mailer', 'exim-relay']}] if exim_relay_enabled else [])
  356. +
  357. ([{'name': (ntfy_identifier + '.service'), 'priority': 800, 'groups': ['matrix', 'ntfy']}] if ntfy_enabled else [])
  358. +
  359. ([{'name': (postgres_identifier + '.service'), 'priority': 500, 'groups': ['matrix', 'postgres']}] if postgres_enabled else [])
  360. +
  361. ([{'name': (postgres_backup_identifier + '.service'), 'priority': 5000, 'groups': ['matrix', 'backup', 'postgres-backup']}] if postgres_backup_enabled else [])
  362. +
  363. ([{'name': (prometheus_identifier + '.service'), 'priority': 4000, 'groups': ['matrix', 'monitoring', 'prometheus']}] if prometheus_enabled else [])
  364. +
  365. ([{'name': (prometheus_node_exporter_identifier + '.service'), 'priority': 3900, 'groups': ['matrix', 'monitoring', 'prometheus-exporters', 'prometheus-node-exporter']}] if prometheus_node_exporter_enabled else [])
  366. +
  367. ([{'name': (prometheus_postgres_exporter_identifier + '.service'), 'priority': 3900, 'groups': ['matrix', 'monitoring', 'prometheus-exporters', 'prometheus-postgres-exporter']}] if prometheus_postgres_exporter_enabled else [])
  368. +
  369. ([{'name': 'matrix-prometheus-nginxlog-exporter.service', 'priority': 3900, 'groups': ['matrix', 'monitoring', 'prometheus-exporters', 'prometheus-nginxlog-exporter']}] if matrix_prometheus_nginxlog_exporter_enabled else [])
  370. +
  371. ([{'name': (valkey_identifier + '.service'), 'priority': 750, 'groups': ['matrix', 'valkey']}] if valkey_enabled else [])
  372. +
  373. ([{'name': 'matrix-pantalaimon.service', 'priority': 4000, 'groups': ['matrix', 'pantalaimon']}] if matrix_pantalaimon_enabled else [])
  374. +
  375. ([{'name': 'matrix-element-admin.service', 'priority': 4000, 'groups': ['matrix', 'element-admin']}] if matrix_element_admin_enabled else [])
  376. +
  377. ([{'name': 'matrix-element-call.service', 'priority': 4000, 'groups': ['matrix', 'element-call']}] if matrix_element_call_enabled else [])
  378. +
  379. ([{'name': 'matrix-livekit-jwt-service.service', 'priority': 3500, 'groups': ['matrix', 'livekit-jwt-service']}] if matrix_livekit_jwt_service_enabled else [])
  380. +
  381. ([{'name': (livekit_server_identifier + '.service'), 'priority': 3000, 'groups': ['matrix', 'livekit-server']}] if livekit_server_enabled else [])
  382. +
  383. ([{'name': 'matrix-registration.service', 'priority': 4000, 'groups': ['matrix', 'registration', 'matrix-registration']}] if matrix_registration_enabled else [])
  384. +
  385. ([{'name': 'matrix-sygnal.service', 'priority': 800, 'groups': ['matrix', 'sygnal']}] if matrix_sygnal_enabled else [])
  386. +
  387. ([{'name': 'matrix-goofys.service', 'priority': 800, 'groups': ['matrix', 'goofys']}] if matrix_s3_media_store_enabled else [])
  388. +
  389. ([{'name': 'matrix-synapse-s3-storage-provider-migrate.timer', 'priority': 5000, 'groups': ['matrix']}] if matrix_synapse_ext_synapse_s3_storage_provider_enabled else [])
  390. +
  391. ([{'name': 'matrix-synapse-auto-compressor.timer', 'priority': 5000, 'groups': ['matrix', 'synapse-auto-compressor']}] if matrix_synapse_auto_compressor_enabled else [])
  392. +
  393. ([{'name': 'matrix-synapse-admin.service', 'priority': 4000, 'groups': ['matrix', 'synapse-admin']}] if matrix_synapse_admin_enabled else [])
  394. +
  395. ([{'name': (matrix_synapse_usage_exporter_identifier + '.service'), 'priority': 4000, 'groups': ['matrix', 'synapse-usage-exporter']}] if matrix_synapse_usage_exporter_enabled else [])
  396. +
  397. ([{'name': 'matrix-synapse-reverse-proxy-companion.service', 'priority': 1500, 'groups': ['matrix', 'homeservers', 'synapse', 'synapse-reverse-proxy-companion', 'reverse-proxies']}] if matrix_synapse_reverse_proxy_companion_enabled else [])
  398. +
  399. ([{'name': 'matrix-user-verification-service.service', 'priority': 800, 'groups': ['matrix', 'matrix-user-verification-service']}] if matrix_user_verification_service_enabled else [])
  400. +
  401. ([{'name': (matrix_static_files_identifier + '.service'), 'priority': 4000, 'groups': ['matrix', 'matrix-static-files']}] if matrix_static_files_enabled else [])
  402. +
  403. ([{'name': (container_socket_proxy_identifier + '.service'), 'priority': 200, 'groups': ['matrix', 'reverse-proxies', 'container-socket-proxy']}] if container_socket_proxy_enabled else [])
  404. +
  405. ([{'name': (traefik_identifier + '.service'), 'priority': 250, 'groups': ['matrix', 'traefik', 'reverse-proxies']}] if traefik_enabled else [])
  406. +
  407. ([{'name': (traefik_certs_dumper_identifier + '.service'), 'priority': 300, 'groups': ['matrix', 'traefik-certs-dumper']}] if traefik_certs_dumper_enabled else [])
  408. }}
  409. ########################################################################
  410. # #
  411. # /com.devture.ansible.role.systemd_service_manager #
  412. # #
  413. ########################################################################
  414. ########################################################################
  415. # #
  416. # com.devture.ansible.role.timesync #
  417. # #
  418. ########################################################################
  419. # To completely disable installing systemd-timesyncd/ntpd, use `devture_timesync_installation_enabled: false`.
  420. ########################################################################
  421. # #
  422. # /com.devture.ansible.role.timesync #
  423. # #
  424. ########################################################################
  425. ######################################################################
  426. #
  427. # com.devture.ansible.role.playbook_state_preserver
  428. #
  429. ######################################################################
  430. # To completely disable this feature, use `devture_playbook_state_preserver_enabled: false`.
  431. devture_playbook_state_preserver_uid: "{{ matrix_user_uid }}"
  432. devture_playbook_state_preserver_gid: "{{ matrix_user_gid }}"
  433. devture_playbook_state_preserver_vars_preservation_dst: "{{ matrix_base_data_path }}/vars.yml"
  434. devture_playbook_state_preserver_commit_hash_preservation_dst: "{{ matrix_base_data_path }}/git_hash.yml"
  435. ######################################################################
  436. #
  437. # /com.devture.ansible.role.playbook_state_preserver
  438. #
  439. ######################################################################
  440. ########################################################################
  441. # #
  442. # geerlingguy/ansible-role-docker #
  443. # #
  444. ########################################################################
  445. docker_daemon_options: "{{ matrix_playbook_docker_installation_daemon_options }}"
  446. ########################################################################
  447. # #
  448. # /geerlingguy/ansible-role-docker #
  449. # #
  450. ########################################################################
  451. ######################################################################
  452. #
  453. # matrix-base
  454. #
  455. ######################################################################
  456. matrix_homeserver_systemd_services_list: |-
  457. {{
  458. (
  459. ([('matrix-' + matrix_homeserver_implementation + '.service')] if matrix_homeserver_implementation != 'synapse' else [])
  460. +
  461. ([('matrix-' + matrix_homeserver_implementation + '.service')] if matrix_homeserver_implementation == 'synapse' and not matrix_synapse_reverse_proxy_companion_enabled else [])
  462. +
  463. (['matrix-synapse-reverse-proxy-companion.service'] if matrix_synapse_reverse_proxy_companion_enabled else [])
  464. ) | unique
  465. }}
  466. matrix_homeserver_container_client_api_endpoint: |-
  467. {{
  468. {
  469. 'synapse': ('matrix-synapse-reverse-proxy-companion:8008' if matrix_synapse_reverse_proxy_companion_enabled | default(false) else ('matrix-synapse:'+ matrix_synapse_container_client_api_port | default('8008') | string)),
  470. 'dendrite': ('matrix-dendrite:' + matrix_dendrite_http_bind_port | default('8008') | string),
  471. 'conduit': ('matrix-conduit:' + matrix_conduit_port_number | default('8008') | string),
  472. 'continuwuity': ('matrix-continuwuity:' + matrix_continuwuity_config_port_number | default('8008') | string),
  473. }[matrix_homeserver_implementation]
  474. }}
  475. matrix_homeserver_container_federation_api_endpoint: |-
  476. {{
  477. {
  478. 'synapse': ('matrix-synapse-reverse-proxy-companion:8048' if matrix_synapse_reverse_proxy_companion_enabled else ('matrix-synapse:'+ matrix_synapse_container_federation_api_plain_port | default('8008') | string)),
  479. 'dendrite': ('matrix-dendrite:' + matrix_dendrite_http_bind_port | default('8008') | string),
  480. 'conduit': ('matrix-conduit:' + matrix_conduit_port_number | default('8008') | string),
  481. 'continuwuity': ('matrix-continuwuity:' + matrix_continuwuity_config_port_number | default('8008') | string),
  482. }[matrix_homeserver_implementation]
  483. }}
  484. matrix_integration_manager_rest_url: "{{ matrix_dimension_integrations_rest_url if matrix_dimension_enabled else None }}"
  485. matrix_integration_manager_ui_url: "{{ matrix_dimension_integrations_ui_url if matrix_dimension_enabled else None }}"
  486. ######################################################################
  487. #
  488. # /matrix-base
  489. #
  490. ######################################################################
  491. ######################################################################
  492. #
  493. # matrix-alertmanager-receiver
  494. #
  495. ######################################################################
  496. # We don't enable this by default.
  497. matrix_alertmanager_receiver_enabled: false
  498. matrix_alertmanager_receiver_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_alertmanager_receiver_container_image_registry_prefix_upstream_default }}"
  499. matrix_alertmanager_receiver_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  500. matrix_alertmanager_receiver_container_network: "{{ matrix_addons_container_network }}"
  501. matrix_alertmanager_receiver_container_additional_networks_auto: |-
  502. {{
  503. (
  504. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  505. +
  506. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_alertmanager_receiver_container_labels_traefik_enabled) else [])
  507. ) | unique
  508. }}
  509. matrix_alertmanager_receiver_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  510. matrix_alertmanager_receiver_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  511. matrix_alertmanager_receiver_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  512. matrix_alertmanager_receiver_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  513. matrix_alertmanager_receiver_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  514. matrix_alertmanager_receiver_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  515. matrix_alertmanager_receiver_systemd_required_services_list_auto: "{{ matrix_addons_homeserver_systemd_services_list }}"
  516. matrix_alertmanager_receiver_config_matrix_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  517. matrix_alertmanager_receiver_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  518. matrix_alertmanager_receiver_metrics_proxying_enabled: "{{ matrix_alertmanager_receiver_config_http_metrics_enabled and matrix_metrics_exposure_enabled }}"
  519. matrix_alertmanager_receiver_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  520. matrix_alertmanager_receiver_metrics_proxying_path: "{{ matrix_metrics_exposure_path_prefix }}/matrix-alertmanager-receiver"
  521. ######################################################################
  522. #
  523. # /matrix-alertmanager-receiver
  524. #
  525. ######################################################################
  526. ######################################################################
  527. #
  528. # matrix-authentication-service
  529. #
  530. ######################################################################
  531. matrix_authentication_service_enabled: false
  532. matrix_authentication_service_hostname: "{{ matrix_server_fqn_matrix }}"
  533. matrix_authentication_service_path_prefix: /auth
  534. matrix_authentication_service_config_database_host: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  535. matrix_authentication_service_config_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mas.db') | hash('sha512') | to_uuid }}"
  536. matrix_authentication_service_config_matrix_homeserver: "{{ matrix_domain }}"
  537. matrix_authentication_service_config_matrix_secret: "{{ (matrix_homeserver_generic_secret_key + ':mas.hs.secret') | hash('sha512') | to_uuid }}"
  538. matrix_authentication_service_config_matrix_endpoint: "{{ matrix_homeserver_container_url }}"
  539. # We're using a non-default configuration which:
  540. # - allows passwords from Synapse (hashed with bcrypt) to be imported with scheme version 1 so existing users will be able to login
  541. # - as soon as they do one login, the hash will be 'upgraded' to argon2id
  542. matrix_authentication_service_config_passwords_schemes:
  543. - version: 1
  544. secret: "{{ matrix_synapse_password_config_pepper }}"
  545. algorithm: bcrypt
  546. unicode_normalization: true
  547. - version: 2
  548. algorithm: argon2id
  549. matrix_authentication_service_config_email_transport: "{{ 'smtp' if exim_relay_enabled else 'blackhole' }}"
  550. matrix_authentication_service_config_email_hostname: "{{ exim_relay_identifier if exim_relay_enabled else '' }}"
  551. matrix_authentication_service_config_email_port: "{{ 8025 if exim_relay_enabled else 587 }}"
  552. matrix_authentication_service_config_email_mode: "{{ 'plain' if exim_relay_enabled else 'starttls' }}"
  553. matrix_authentication_service_config_email_from_address: "{{ exim_relay_sender_address }}"
  554. matrix_authentication_service_admin_api_enabled: "{{ matrix_element_admin_enabled }}"
  555. matrix_authentication_service_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_authentication_service_container_image_registry_prefix_upstream_default }}"
  556. matrix_authentication_service_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  557. matrix_authentication_service_container_network: "{{ matrix_homeserver_container_network }}"
  558. matrix_authentication_service_container_additional_networks_auto: |-
  559. {{
  560. (
  561. ([postgres_container_network] if postgres_enabled and matrix_authentication_service_config_database_host == postgres_connection_hostname else [])
  562. +
  563. ([exim_relay_container_network] if (exim_relay_enabled and matrix_authentication_service_config_email_transport == 'smtp' and matrix_authentication_service_config_email_hostname == exim_relay_identifier and matrix_authentication_service_container_network != exim_relay_container_network) else [])
  564. +
  565. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_authentication_service_container_labels_traefik_enabled else [])
  566. ) | unique
  567. }}
  568. matrix_authentication_service_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  569. matrix_authentication_service_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  570. matrix_authentication_service_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  571. matrix_authentication_service_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  572. matrix_authentication_service_container_labels_public_compatibility_layer_enabled: "{{ not matrix_authentication_service_migration_in_progress}}"
  573. matrix_authentication_service_container_labels_public_compatibility_layer_hostname: "{{ matrix_server_fqn_matrix }}"
  574. matrix_authentication_service_container_labels_internal_compatibility_layer_enabled: "{{ not matrix_authentication_service_migration_in_progress}}"
  575. matrix_authentication_service_container_labels_internal_compatibility_layer_entrypoints: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name }}"
  576. # MAS somewhat depends on the homeserver service, but the homeserver also depends on MAS.
  577. # To avoid a circular dependency, we make MAS not depend on the homeserver here.
  578. # The homeserver is more lost without MAS than MAS is without the homeserver, so we'll define the dependency on the homeserver side.
  579. # We'll put our dependency on the homeserver as a "want", rather than a requirement.
  580. matrix_authentication_service_systemd_required_services_list_auto: |
  581. {{
  582. ([postgres_identifier ~ '.service'] if postgres_enabled and matrix_authentication_service_config_database_host == postgres_connection_hostname else [])
  583. }}
  584. # See more information about this homeserver "want" in the comment for `matrix_authentication_service_systemd_required_services_list_auto` above.
  585. matrix_authentication_service_systemd_wanted_services_list_auto: |
  586. {{
  587. ['matrix-' + matrix_homeserver_implementation + '.service']
  588. +
  589. ([exim_relay_identifier ~ '.service'] if (exim_relay_enabled and matrix_authentication_service_config_email_transport == 'smtp' and matrix_authentication_service_config_email_hostname == exim_relay_identifier and matrix_authentication_service_container_network != exim_relay_container_network) else [])
  590. }}
  591. matrix_authentication_service_syn2mas_container_network: "{{ postgres_container_network if postgres_enabled and matrix_authentication_service_config_database_host == postgres_connection_hostname else matrix_authentication_service_container_network }}"
  592. matrix_authentication_service_syn2mas_synapse_homeserver_config_path: "{{ matrix_synapse_config_dir_path + '/homeserver.yaml' if matrix_synapse_enabled else '' }}"
  593. ######################################################################
  594. #
  595. # /matrix-authentication-service
  596. #
  597. ######################################################################
  598. ######################################################################
  599. #
  600. # matrix-bridge-appservice-discord
  601. #
  602. ######################################################################
  603. # We don't enable bridges by default.
  604. matrix_appservice_discord_enabled: false
  605. matrix_appservice_discord_systemd_required_services_list_auto: |
  606. {{
  607. matrix_addons_homeserver_systemd_services_list
  608. +
  609. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_appservice_discord_database_hostname == postgres_connection_hostname) else [])
  610. }}
  611. matrix_appservice_discord_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_appservice_discord_docker_image_registry_prefix_upstream_default }}"
  612. matrix_appservice_discord_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '9005') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  613. matrix_appservice_discord_container_network: "{{ matrix_addons_container_network }}"
  614. matrix_appservice_discord_container_additional_networks_auto: |-
  615. {{
  616. (
  617. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  618. +
  619. ([postgres_container_network] if (postgres_enabled and matrix_appservice_discord_database_hostname == postgres_connection_hostname and matrix_appservice_discord_container_network != postgres_container_network) else [])
  620. ) | unique
  621. }}
  622. # If the homeserver disables presence, it's likely better (less wasteful) to also disable presence on the bridge side.
  623. matrix_appservice_discord_bridge_disablePresence: "{{ (not matrix_synapse_presence_enabled) if matrix_homeserver_implementation == 'synapse' else false }}"
  624. matrix_appservice_discord_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':discord.as.token') | hash('sha512') | to_uuid }}"
  625. matrix_appservice_discord_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':discord.hs.token') | hash('sha512') | to_uuid }}"
  626. # We only make this use Postgres if our own Postgres server is enabled.
  627. # It's only then (for now) that we can automatically create the necessary database and user for this service.
  628. matrix_appservice_discord_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  629. matrix_appservice_discord_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  630. matrix_appservice_discord_database_password: "{{ (matrix_homeserver_generic_secret_key + ':as.discord.db') | hash('sha512') | to_uuid }}"
  631. ######################################################################
  632. #
  633. # /matrix-bridge-appservice-discord
  634. #
  635. ######################################################################
  636. ######################################################################
  637. #
  638. # matrix-appservice-slack
  639. #
  640. ######################################################################
  641. # We don't enable bridges by default.
  642. matrix_appservice_slack_enabled: false
  643. matrix_appservice_slack_hostname: "{{ matrix_server_fqn_matrix }}"
  644. matrix_appservice_slack_systemd_required_services_list_auto: |
  645. {{
  646. matrix_addons_homeserver_systemd_services_list
  647. +
  648. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_appservice_slack_database_hostname == postgres_connection_hostname) else [])
  649. }}
  650. matrix_appservice_slack_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_appservice_slack_docker_image_registry_prefix_upstream_default }}"
  651. matrix_appservice_slack_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  652. matrix_appservice_slack_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ matrix_appservice_slack_slack_port) if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  653. matrix_appservice_slack_container_network: "{{ matrix_addons_container_network }}"
  654. matrix_appservice_slack_container_additional_networks_auto: |-
  655. {{
  656. (
  657. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  658. +
  659. ([postgres_container_network] if (postgres_enabled and matrix_appservice_slack_database_hostname == postgres_connection_hostname and matrix_appservice_slack_container_network != postgres_container_network) else [])
  660. +
  661. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_appservice_slack_container_labels_traefik_enabled) else [])
  662. ) | unique
  663. }}
  664. matrix_appservice_slack_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  665. matrix_appservice_slack_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  666. matrix_appservice_slack_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  667. matrix_appservice_slack_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  668. matrix_appservice_slack_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':slack.as.token') | hash('sha512') | to_uuid }}"
  669. matrix_appservice_slack_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  670. matrix_appservice_slack_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':slack.hs.token') | hash('sha512') | to_uuid }}"
  671. matrix_appservice_slack_id_token: "{{ (matrix_homeserver_generic_secret_key + ':slack.id.token') | hash('sha512') | to_uuid }}"
  672. # Postgres is the default, except if not using internal Postgres server
  673. matrix_appservice_slack_database_engine: "{{ 'postgres' if postgres_enabled else 'nedb' }}"
  674. matrix_appservice_slack_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  675. matrix_appservice_slack_database_password: "{{ (matrix_homeserver_generic_secret_key + ':as.slack.db') | hash('sha512') | to_uuid }}"
  676. matrix_appservice_slack_database_container_network: "{{ postgres_container_network if postgres_enabled else '' }}"
  677. ######################################################################
  678. #
  679. # /matrix-bridge-appservice-slack
  680. #
  681. ######################################################################
  682. ######################################################################
  683. #
  684. # matrix-bridge-appservice-irc
  685. #
  686. ######################################################################
  687. # We don't enable bridges by default.
  688. matrix_appservice_irc_enabled: false
  689. matrix_appservice_irc_systemd_required_services_list_auto: |
  690. {{
  691. matrix_addons_homeserver_systemd_services_list
  692. +
  693. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_appservice_irc_database_hostname == postgres_connection_hostname) else [])
  694. }}
  695. matrix_appservice_irc_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_appservice_irc_docker_image_registry_prefix_upstream_default }}"
  696. matrix_appservice_irc_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  697. matrix_appservice_irc_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '9999') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  698. matrix_appservice_irc_container_network: "{{ matrix_addons_container_network }}"
  699. matrix_appservice_irc_container_additional_networks_auto: |-
  700. {{
  701. (
  702. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  703. +
  704. ([postgres_container_network] if (postgres_enabled and matrix_appservice_irc_database_hostname == postgres_connection_hostname and matrix_appservice_irc_container_network != postgres_container_network) else [])
  705. +
  706. [matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_appservice_irc_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else []
  707. ) | unique
  708. }}
  709. # The IRC bridge docs say that if homeserver presence is disabled, it's better to also disable
  710. # IRC bridge presence, for performance reasons.
  711. matrix_appservice_irc_homeserver_enablePresence: "{{ matrix_synapse_presence_enabled if matrix_homeserver_implementation == 'synapse' else true }}"
  712. matrix_appservice_irc_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':irc.as.token') | hash('sha512') | to_uuid }}"
  713. matrix_appservice_irc_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  714. matrix_appservice_irc_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':irc.hs.token') | hash('sha512') | to_uuid }}"
  715. matrix_appservice_irc_database_engine: "{{ 'postgres' if postgres_enabled else 'nedb' }}"
  716. matrix_appservice_irc_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  717. matrix_appservice_irc_database_password: "{{ (matrix_homeserver_generic_secret_key + ':as.irc.db') | hash('sha512') | to_uuid }}"
  718. matrix_appservice_irc_database_container_network: "{{ postgres_container_network if postgres_enabled else '' }}"
  719. matrix_appservice_irc_ircService_mediaProxy_publicUrl_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}" # noqa var-naming
  720. matrix_appservice_irc_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  721. matrix_appservice_irc_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  722. matrix_appservice_irc_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  723. matrix_appservice_irc_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}" # noqa var-naming
  724. ######################################################################
  725. #
  726. # /matrix-bridge-appservice-irc
  727. #
  728. ######################################################################
  729. ######################################################################
  730. #
  731. # matrix-bridge-appservice-kakaotalk
  732. #
  733. ######################################################################
  734. # We don't enable bridges by default.
  735. matrix_appservice_kakaotalk_enabled: false
  736. matrix_appservice_kakaotalk_systemd_required_services_list_auto: |
  737. {{
  738. matrix_addons_homeserver_systemd_services_list
  739. +
  740. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_appservice_kakaotalk_database_hostname == postgres_connection_hostname) else [])
  741. }}
  742. matrix_appservice_kakaotalk_node_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_appservice_kakaotalk_node_docker_image_registry_prefix_upstream_default }}"
  743. matrix_appservice_kakaotalk_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_appservice_kakaotalk_docker_image_registry_prefix_upstream_default }}"
  744. matrix_appservice_kakaotalk_container_network: "{{ matrix_addons_container_network }}"
  745. matrix_appservice_kakaotalk_container_additional_networks_auto: |-
  746. {{
  747. (
  748. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  749. +
  750. ([postgres_container_network] if (postgres_enabled and matrix_appservice_kakaotalk_database_hostname == postgres_connection_hostname and matrix_appservice_kakaotalk_container_network != postgres_container_network) else [])
  751. ) | unique
  752. }}
  753. matrix_appservice_kakaotalk_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':as.kakao.hs') | hash('sha512') | to_uuid }}"
  754. matrix_appservice_kakaotalk_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  755. matrix_appservice_kakaotalk_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':as.kakao.hs') | hash('sha512') | to_uuid }}"
  756. matrix_appservice_kakaotalk_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  757. matrix_appservice_kakaotalk_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  758. matrix_appservice_kakaotalk_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  759. matrix_appservice_kakaotalk_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  760. matrix_appservice_kakaotalk_database_password: "{{ (matrix_homeserver_generic_secret_key + ':as.kakao.db') | hash('sha512') | to_uuid }}"
  761. ######################################################################
  762. #
  763. # /matrix-bridge-appservice-kakaotalk
  764. #
  765. ######################################################################
  766. ######################################################################
  767. #
  768. # matrix-bridge-beeper-linkedin
  769. #
  770. ######################################################################
  771. # We don't enable bridges by default.
  772. matrix_beeper_linkedin_enabled: false
  773. matrix_beeper_linkedin_systemd_required_services_list_auto: |
  774. {{
  775. matrix_addons_homeserver_systemd_services_list
  776. +
  777. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_beeper_linkedin_database_hostname == postgres_connection_hostname) else [])
  778. }}
  779. matrix_beeper_linkedin_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_beeper_linkedin_docker_image_registry_prefix_upstream_default }}"
  780. matrix_beeper_linkedin_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  781. matrix_beeper_linkedin_container_network: "{{ matrix_addons_container_network }}"
  782. matrix_beeper_linkedin_container_additional_networks_auto: |-
  783. {{
  784. (
  785. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  786. +
  787. ([postgres_container_network] if (postgres_enabled and matrix_beeper_linkedin_database_hostname == postgres_connection_hostname and matrix_beeper_linkedin_container_network != postgres_container_network) else [])
  788. ) | unique
  789. }}
  790. matrix_beeper_linkedin_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':linked.as.token') | hash('sha512') | to_uuid }}"
  791. matrix_beeper_linkedin_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  792. matrix_beeper_linkedin_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':linked.hs.token') | hash('sha512') | to_uuid }}"
  793. matrix_beeper_linkedin_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  794. matrix_beeper_linkedin_bridge_login_shared_secret_map_auto: |-
  795. {{
  796. ({
  797. matrix_beeper_linkedin_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  798. })
  799. if matrix_appservice_double_puppet_enabled
  800. else (
  801. {matrix_beeper_linkedin_homeserver_domain: matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret}
  802. if matrix_synapse_ext_password_provider_shared_secret_auth_enabled
  803. else {}
  804. )
  805. }}
  806. matrix_beeper_linkedin_bridge_presence: "{{ (matrix_synapse_presence_enabled if matrix_synapse_enabled else true) if matrix_homeserver_implementation == 'synapse' else true }}"
  807. matrix_beeper_linkedin_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  808. matrix_beeper_linkedin_database_password: "{{ (matrix_homeserver_generic_secret_key + ':maulinkedin.db') | hash('sha512') | to_uuid }}"
  809. ######################################################################
  810. #
  811. # /matrix-bridge-beeper-linkedin
  812. #
  813. ######################################################################
  814. ######################################################################
  815. #
  816. # matrix-bridge-mautrix-bluesky
  817. #
  818. ######################################################################
  819. # We don't enable bridges by default.
  820. matrix_mautrix_bluesky_enabled: false
  821. matrix_mautrix_bluesky_systemd_required_services_list_auto: |
  822. {{
  823. matrix_addons_homeserver_systemd_services_list
  824. +
  825. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_bluesky_database_hostname == postgres_connection_hostname) else [])
  826. }}
  827. matrix_mautrix_bluesky_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_bluesky_docker_image_registry_prefix_upstream_default }}"
  828. matrix_mautrix_bluesky_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  829. matrix_mautrix_bluesky_container_network: "{{ matrix_addons_container_network }}"
  830. matrix_mautrix_bluesky_container_additional_networks_auto: |-
  831. {{
  832. (
  833. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  834. +
  835. ([postgres_container_network] if (postgres_enabled and matrix_mautrix_bluesky_database_hostname == postgres_connection_hostname and matrix_mautrix_bluesky_container_network != postgres_container_network) else [])
  836. +
  837. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_mautrix_bluesky_container_labels_traefik_enabled else [])
  838. ) | unique
  839. }}
  840. matrix_mautrix_bluesky_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  841. matrix_mautrix_bluesky_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  842. matrix_mautrix_bluesky_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  843. matrix_mautrix_bluesky_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  844. matrix_mautrix_bluesky_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  845. matrix_mautrix_bluesky_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  846. matrix_mautrix_bluesky_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':bsky.as.token') | hash('sha512') | to_uuid }}"
  847. matrix_mautrix_bluesky_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  848. matrix_mautrix_bluesky_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':bsky.hs.token') | hash('sha512') | to_uuid }}"
  849. matrix_mautrix_bluesky_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  850. matrix_mautrix_bluesky_provisioning_shared_secret: "{{ (matrix_homeserver_generic_secret_key + ':mau.bsky.prov') | hash('sha512') | to_uuid }}"
  851. matrix_mautrix_bluesky_double_puppet_secrets_auto: |-
  852. {{
  853. ({
  854. matrix_mautrix_bluesky_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  855. })
  856. if matrix_appservice_double_puppet_enabled
  857. else {}
  858. }}
  859. matrix_mautrix_bluesky_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  860. matrix_mautrix_bluesky_metrics_proxying_enabled: "{{ matrix_mautrix_bluesky_metrics_enabled and matrix_metrics_exposure_enabled }}"
  861. matrix_mautrix_bluesky_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  862. matrix_mautrix_bluesky_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/mautrix-bluesky"
  863. matrix_mautrix_bluesky_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  864. matrix_mautrix_bluesky_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mau.twt.db') | hash('sha512') | to_uuid if postgres_enabled else '' }}"
  865. ######################################################################
  866. #
  867. # /matrix-bridge-mautrix-bluesky
  868. #
  869. ######################################################################
  870. ######################################################################
  871. #
  872. # matrix-bridge-mautrix-discord
  873. #
  874. ######################################################################
  875. # We don't enable bridges by default.
  876. matrix_mautrix_discord_enabled: false
  877. matrix_mautrix_discord_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_discord_docker_image_registry_prefix_upstream_default }}"
  878. matrix_mautrix_discord_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  879. matrix_mautrix_discord_container_network: "{{ matrix_addons_container_network }}"
  880. matrix_mautrix_discord_container_additional_networks_auto: |-
  881. {{
  882. (
  883. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  884. +
  885. ([postgres_container_network] if postgres_enabled and matrix_mautrix_discord_database_hostname == postgres_connection_hostname else [])
  886. +
  887. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_mautrix_discord_container_labels_traefik_enabled) else [])
  888. ) | unique
  889. }}
  890. matrix_mautrix_discord_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  891. matrix_mautrix_discord_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  892. matrix_mautrix_discord_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  893. matrix_mautrix_discord_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  894. matrix_mautrix_discord_systemd_required_services_list_auto: |
  895. {{
  896. matrix_addons_homeserver_systemd_services_list
  897. +
  898. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_discord_database_hostname == postgres_connection_hostname) else [])
  899. }}
  900. matrix_mautrix_discord_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':maudisc.as.tok') | hash('sha512') | to_uuid }}"
  901. matrix_mautrix_discord_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  902. matrix_mautrix_discord_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':maudisc.hs.tok') | hash('sha512') | to_uuid }}"
  903. matrix_mautrix_discord_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  904. matrix_mautrix_discord_bridge_avatar_proxy_key: "{{ (matrix_homeserver_generic_secret_key + ':maudisc.avatar') | hash('sha512') | to_uuid }}"
  905. matrix_mautrix_discord_hostname: "{{ matrix_server_fqn_matrix }}"
  906. matrix_mautrix_discord_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  907. matrix_mautrix_discord_bridge_login_shared_secret_map_auto: |-
  908. {{
  909. ({
  910. matrix_mautrix_discord_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  911. })
  912. if matrix_appservice_double_puppet_enabled
  913. else (
  914. {matrix_mautrix_discord_homeserver_domain: matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret}
  915. if matrix_synapse_ext_password_provider_shared_secret_auth_enabled
  916. else {}
  917. )
  918. }}
  919. # Postgres is the default, except if not using internal Postgres server
  920. matrix_mautrix_discord_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  921. matrix_mautrix_discord_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  922. matrix_mautrix_discord_database_password: "{{ (matrix_homeserver_generic_secret_key + ':maudiscord.db') | hash('sha512') | to_uuid }}"
  923. ######################################################################
  924. #
  925. # /matrix-bridge-mautrix-discord
  926. #
  927. ######################################################################
  928. ######################################################################
  929. #
  930. # matrix-bridge-mautrix-slack
  931. #
  932. ######################################################################
  933. # We don't enable bridges by default.
  934. matrix_mautrix_slack_enabled: false
  935. matrix_mautrix_slack_systemd_required_services_list_auto: |
  936. {{
  937. matrix_addons_homeserver_systemd_services_list
  938. +
  939. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_slack_database_hostname == postgres_connection_hostname) else [])
  940. }}
  941. matrix_mautrix_slack_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_slack_docker_image_registry_prefix_upstream_default }}"
  942. matrix_mautrix_slack_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  943. matrix_mautrix_slack_container_network: "{{ matrix_addons_container_network }}"
  944. matrix_mautrix_slack_container_additional_networks_auto: |-
  945. {{
  946. (
  947. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  948. +
  949. ([postgres_container_network] if (postgres_enabled and matrix_mautrix_slack_database_hostname == postgres_connection_hostname and matrix_mautrix_slack_container_network != postgres_container_network) else [])
  950. ) | unique
  951. }}
  952. matrix_mautrix_slack_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':mauslack.as.tok') | hash('sha512') | to_uuid }}"
  953. matrix_mautrix_slack_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  954. matrix_mautrix_slack_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':mauslack.hs.tok') | hash('sha512') | to_uuid }}"
  955. matrix_mautrix_slack_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  956. matrix_mautrix_slack_double_puppet_secrets_auto: |-
  957. {{
  958. {
  959. matrix_mautrix_slack_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  960. }
  961. if matrix_appservice_double_puppet_enabled
  962. else {}
  963. }}
  964. # Postgres is the default, except if not using internal Postgres server
  965. matrix_mautrix_slack_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  966. matrix_mautrix_slack_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  967. matrix_mautrix_slack_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mauslack.db') | hash('sha512') | to_uuid }}"
  968. matrix_mautrix_slack_provisioning_shared_secret: "{{ (matrix_homeserver_generic_secret_key + ':mau.slack.prov') | hash('sha512') | to_uuid }}"
  969. matrix_mautrix_slack_public_media_signing_key: "{{ (matrix_homeserver_generic_secret_key + ':mau.slack.pmed') | hash('sha512') | to_uuid }}"
  970. ######################################################################
  971. #
  972. # /matrix-bridge-mautrix-slack
  973. #
  974. ######################################################################
  975. ######################################################################
  976. #
  977. # matrix-bridge-mautrix-googlechat
  978. #
  979. ######################################################################
  980. # We don't enable bridges by default.
  981. matrix_mautrix_googlechat_enabled: false
  982. matrix_mautrix_googlechat_systemd_required_services_list_auto: |
  983. {{
  984. matrix_addons_homeserver_systemd_services_list
  985. +
  986. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_googlechat_database_hostname == postgres_connection_hostname) else [])
  987. }}
  988. matrix_mautrix_googlechat_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_googlechat_docker_image_registry_prefix_upstream_default }}"
  989. matrix_mautrix_googlechat_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  990. matrix_mautrix_googlechat_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '9007') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  991. matrix_mautrix_googlechat_container_network: "{{ matrix_addons_container_network }}"
  992. matrix_mautrix_googlechat_container_additional_networks_auto: |-
  993. {{
  994. (
  995. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  996. +
  997. ([postgres_container_network] if (postgres_enabled and matrix_mautrix_googlechat_database_hostname == postgres_connection_hostname and matrix_mautrix_googlechat_container_network != postgres_container_network) else [])
  998. +
  999. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_mautrix_gmessages_container_labels_traefik_enabled) else [])
  1000. ) | unique
  1001. }}
  1002. matrix_mautrix_googlechat_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1003. matrix_mautrix_googlechat_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1004. matrix_mautrix_googlechat_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1005. matrix_mautrix_googlechat_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1006. matrix_mautrix_googlechat_container_labels_public_endpoint_hostname: "{{ matrix_server_fqn_matrix }}"
  1007. matrix_mautrix_googlechat_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  1008. matrix_mautrix_googlechat_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  1009. matrix_mautrix_googlechat_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':gc.as.token') | hash('sha512') | to_uuid }}"
  1010. matrix_mautrix_googlechat_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1011. matrix_mautrix_googlechat_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':gc.hs.token') | hash('sha512') | to_uuid }}"
  1012. matrix_mautrix_googlechat_login_shared_secret: |-
  1013. {{
  1014. ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  1015. if matrix_appservice_double_puppet_enabled
  1016. else (
  1017. matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled
  1018. if matrix_synapse_ext_password_provider_shared_secret_auth_enabled
  1019. else ""
  1020. )
  1021. }}
  1022. matrix_mautrix_googlechat_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  1023. matrix_mautrix_googlechat_metrics_proxying_enabled: "{{ matrix_mautrix_googlechat_metrics_enabled and matrix_metrics_exposure_enabled }}"
  1024. matrix_mautrix_googlechat_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  1025. matrix_mautrix_googlechat_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/mautrix-googlechat"
  1026. # Postgres is the default, except if not using internal Postgres server
  1027. matrix_mautrix_googlechat_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1028. matrix_mautrix_googlechat_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1029. matrix_mautrix_googlechat_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mau.gc.db') | hash('sha512') | to_uuid }}"
  1030. ######################################################################
  1031. #
  1032. # /matrix-bridge-mautrix-googlechat
  1033. #
  1034. ######################################################################
  1035. ######################################################################
  1036. #
  1037. # matrix-bridge-mautrix-signal
  1038. #
  1039. ######################################################################
  1040. # We don't enable bridges by default.
  1041. matrix_mautrix_signal_enabled: false
  1042. matrix_mautrix_signal_systemd_required_services_list_auto: |
  1043. {{
  1044. matrix_addons_homeserver_systemd_services_list
  1045. +
  1046. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_signal_database_hostname == postgres_connection_hostname) else [])
  1047. }}
  1048. matrix_mautrix_signal_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_signal_docker_image_registry_prefix_upstream_default }}"
  1049. matrix_mautrix_signal_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  1050. matrix_mautrix_signal_container_network: "{{ matrix_addons_container_network }}"
  1051. matrix_mautrix_signal_container_additional_networks_auto: |-
  1052. {{
  1053. (
  1054. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1055. +
  1056. ([postgres_container_network] if (postgres_enabled and matrix_mautrix_signal_database_hostname == postgres_connection_hostname and matrix_mautrix_signal_container_network != postgres_container_network) else [])
  1057. +
  1058. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_mautrix_signal_container_labels_traefik_enabled else [])
  1059. ) | unique
  1060. }}
  1061. matrix_mautrix_signal_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1062. matrix_mautrix_signal_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1063. matrix_mautrix_signal_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1064. matrix_mautrix_signal_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1065. matrix_mautrix_signal_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  1066. matrix_mautrix_signal_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  1067. matrix_mautrix_signal_homeserver_domain: '{{ matrix_domain }}'
  1068. matrix_mautrix_signal_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1069. matrix_mautrix_signal_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':si.hs.token') | hash('sha512') | to_uuid }}"
  1070. matrix_mautrix_signal_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  1071. matrix_mautrix_signal_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':si.as.token') | hash('sha512') | to_uuid }}"
  1072. matrix_mautrix_signal_double_puppet_secrets_auto: |-
  1073. {{
  1074. {
  1075. matrix_mautrix_signal_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  1076. }
  1077. if matrix_appservice_double_puppet_enabled
  1078. else {}
  1079. }}
  1080. matrix_mautrix_signal_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  1081. matrix_mautrix_signal_metrics_proxying_enabled: "{{ matrix_mautrix_signal_metrics_enabled and matrix_metrics_exposure_enabled }}"
  1082. matrix_mautrix_signal_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  1083. matrix_mautrix_signal_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/mautrix-signal"
  1084. matrix_mautrix_signal_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1085. matrix_mautrix_signal_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1086. matrix_mautrix_signal_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mau.signal.db') | hash('sha512') | to_uuid }}"
  1087. matrix_mautrix_signal_provisioning_shared_secret: "{{ (matrix_homeserver_generic_secret_key + ':mau.signal.prov') | hash('sha512') | to_uuid }}"
  1088. matrix_mautrix_signal_public_media_signing_key: "{{ (matrix_homeserver_generic_secret_key + ':mau.signal.pmed') | hash('sha512') | to_uuid }}"
  1089. ######################################################################
  1090. #
  1091. # /matrix-bridge-mautrix-signal
  1092. #
  1093. ######################################################################
  1094. ######################################################################
  1095. #
  1096. # matrix-bridge-mautrix-meta-messenger
  1097. #
  1098. ######################################################################
  1099. # We don't enable bridges by default.
  1100. matrix_mautrix_meta_messenger_enabled: false
  1101. matrix_mautrix_meta_messenger_systemd_required_services_list_auto: |
  1102. {{
  1103. matrix_addons_homeserver_systemd_services_list
  1104. +
  1105. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_meta_messenger_database_hostname == postgres_connection_hostname) else [])
  1106. }}
  1107. matrix_mautrix_meta_messenger_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_meta_messenger_container_image_registry_prefix_upstream_default }}"
  1108. matrix_mautrix_meta_messenger_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1109. matrix_mautrix_meta_messenger_container_network: "{{ matrix_addons_container_network }}"
  1110. matrix_mautrix_meta_messenger_container_additional_networks_auto: |-
  1111. {{
  1112. (
  1113. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1114. +
  1115. ([postgres_container_network] if (postgres_enabled and matrix_mautrix_meta_messenger_database_hostname == postgres_connection_hostname and matrix_mautrix_meta_messenger_container_network != postgres_container_network) else [])
  1116. +
  1117. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_mautrix_meta_messenger_container_labels_traefik_enabled) else [])
  1118. ) | unique
  1119. }}
  1120. matrix_mautrix_meta_messenger_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1121. matrix_mautrix_meta_messenger_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1122. matrix_mautrix_meta_messenger_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1123. matrix_mautrix_meta_messenger_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1124. matrix_mautrix_meta_messenger_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  1125. matrix_mautrix_meta_messenger_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  1126. matrix_mautrix_meta_messenger_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':mau.meta.fb.as') | hash('sha512') | to_uuid }}"
  1127. matrix_mautrix_meta_messenger_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1128. matrix_mautrix_meta_messenger_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':mau.meta.fb.hs') | hash('sha512') | to_uuid }}"
  1129. matrix_mautrix_meta_messenger_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  1130. matrix_mautrix_meta_messenger_double_puppet_secrets_auto: |-
  1131. {{
  1132. {
  1133. matrix_mautrix_meta_messenger_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  1134. }
  1135. if matrix_appservice_double_puppet_enabled
  1136. else {}
  1137. }}
  1138. matrix_mautrix_meta_messenger_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  1139. matrix_mautrix_meta_messenger_metrics_proxying_enabled: "{{ matrix_mautrix_meta_messenger_metrics_enabled and matrix_metrics_exposure_enabled }}"
  1140. matrix_mautrix_meta_messenger_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  1141. matrix_mautrix_meta_messenger_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/mautrix-meta-messenger"
  1142. # We'd like to force-set people with external Postgres to SQLite, so the bridge role can complain
  1143. # and point them to a migration path.
  1144. matrix_mautrix_meta_messenger_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite3-fk-wal' }}"
  1145. matrix_mautrix_meta_messenger_database_hostname: "{{ postgres_connection_hostname if (postgres_enabled and matrix_mautrix_meta_messenger_database_engine == 'postgres') else '' }}"
  1146. matrix_mautrix_meta_messenger_database_password: "{{ ((matrix_homeserver_generic_secret_key + ':mau.fb.db') | hash('sha512') | to_uuid) if (postgres_enabled and matrix_mautrix_meta_messenger_database_engine == 'postgres') else '' }}"
  1147. ######################################################################
  1148. #
  1149. # /matrix-bridge-mautrix-meta-messenger
  1150. #
  1151. ######################################################################
  1152. ######################################################################
  1153. #
  1154. # matrix-bridge-mautrix-meta-instagram
  1155. #
  1156. ######################################################################
  1157. # We don't enable bridges by default.
  1158. matrix_mautrix_meta_instagram_enabled: false
  1159. matrix_mautrix_meta_instagram_systemd_required_services_list_auto: |
  1160. {{
  1161. matrix_addons_homeserver_systemd_services_list
  1162. +
  1163. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_meta_instagram_database_hostname == postgres_connection_hostname) else [])
  1164. }}
  1165. matrix_mautrix_meta_instagram_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_meta_instagram_container_image_registry_prefix_upstream_default }}"
  1166. matrix_mautrix_meta_instagram_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1167. matrix_mautrix_meta_instagram_container_network: "{{ matrix_addons_container_network }}"
  1168. matrix_mautrix_meta_instagram_container_additional_networks_auto: |-
  1169. {{
  1170. (
  1171. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1172. +
  1173. ([postgres_container_network] if (postgres_enabled and matrix_mautrix_meta_instagram_database_hostname == postgres_connection_hostname and matrix_mautrix_meta_instagram_container_network != postgres_container_network) else [])
  1174. +
  1175. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_mautrix_meta_instagram_container_labels_traefik_enabled) else [])
  1176. ) | unique
  1177. }}
  1178. matrix_mautrix_meta_instagram_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1179. matrix_mautrix_meta_instagram_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1180. matrix_mautrix_meta_instagram_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1181. matrix_mautrix_meta_instagram_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1182. matrix_mautrix_meta_instagram_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  1183. matrix_mautrix_meta_instagram_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  1184. matrix_mautrix_meta_instagram_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':mau.meta.ig.as') | hash('sha512') | to_uuid }}"
  1185. matrix_mautrix_meta_instagram_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1186. matrix_mautrix_meta_instagram_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':mau.meta.ig.hs') | hash('sha512') | to_uuid }}"
  1187. matrix_mautrix_meta_instagram_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  1188. matrix_mautrix_meta_instagram_double_puppet_secrets_auto: |-
  1189. {{
  1190. {
  1191. matrix_mautrix_meta_instagram_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  1192. }
  1193. if matrix_appservice_double_puppet_enabled
  1194. else {}
  1195. }}
  1196. matrix_mautrix_meta_instagram_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  1197. matrix_mautrix_meta_instagram_metrics_proxying_enabled: "{{ matrix_mautrix_meta_instagram_metrics_enabled and matrix_metrics_exposure_enabled }}"
  1198. matrix_mautrix_meta_instagram_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  1199. matrix_mautrix_meta_instagram_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/mautrix-meta-instagram"
  1200. # We'd like to force-set people with external Postgres to SQLite, so the bridge role can complain
  1201. # and point them to a migration path.
  1202. matrix_mautrix_meta_instagram_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite3-fk-wal' }}"
  1203. matrix_mautrix_meta_instagram_database_hostname: "{{ postgres_connection_hostname if (postgres_enabled and matrix_mautrix_meta_instagram_database_engine == 'postgres') else '' }}"
  1204. matrix_mautrix_meta_instagram_database_password: "{{ ((matrix_homeserver_generic_secret_key + ':mau.fb.db') | hash('sha512') | to_uuid) if (postgres_enabled and matrix_mautrix_meta_instagram_database_engine == 'postgres') else '' }}"
  1205. ######################################################################
  1206. #
  1207. # /matrix-bridge-mautrix-meta-instagram
  1208. #
  1209. ######################################################################
  1210. ######################################################################
  1211. #
  1212. # matrix-bridge-mautrix-telegram
  1213. #
  1214. ######################################################################
  1215. # We don't enable bridges by default.
  1216. matrix_mautrix_telegram_enabled: false
  1217. matrix_mautrix_telegram_hostname: "{{ matrix_server_fqn_matrix }}"
  1218. matrix_mautrix_telegram_path_prefix: "/{{ (matrix_homeserver_generic_secret_key + ':telegram') | hash('sha512') | to_uuid }}"
  1219. matrix_mautrix_telegram_systemd_required_services_list_auto: |
  1220. {{
  1221. matrix_addons_homeserver_systemd_services_list
  1222. +
  1223. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_telegram_database_hostname == postgres_connection_hostname) else [])
  1224. }}
  1225. matrix_mautrix_telegram_lottieconverter_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_telegram_lottieconverter_docker_image_registry_prefix_upstream_default }}"
  1226. matrix_mautrix_telegram_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_telegram_docker_image_registry_prefix_upstream_default }}"
  1227. # Images are multi-arch (amd64 and arm64, but not arm32).
  1228. matrix_mautrix_telegram_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  1229. matrix_mautrix_telegram_lottieconverter_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  1230. matrix_mautrix_telegram_lottieconverter_container_image_self_build_mask_arch: "{{ matrix_architecture != 'amd64' }}"
  1231. matrix_mautrix_telegram_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '9006') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  1232. matrix_mautrix_telegram_container_network: "{{ matrix_addons_container_network }}"
  1233. matrix_mautrix_telegram_container_additional_networks_auto: |-
  1234. {{
  1235. (
  1236. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1237. +
  1238. ([postgres_container_network] if (postgres_enabled and matrix_mautrix_telegram_database_hostname == postgres_connection_hostname and matrix_mautrix_telegram_container_network != postgres_container_network) else [])
  1239. +
  1240. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_mautrix_telegram_container_labels_traefik_enabled) else [])
  1241. ) | unique
  1242. }}
  1243. matrix_mautrix_telegram_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1244. matrix_mautrix_telegram_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1245. matrix_mautrix_telegram_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1246. matrix_mautrix_telegram_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1247. matrix_mautrix_telegram_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  1248. matrix_mautrix_telegram_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  1249. matrix_mautrix_telegram_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':telegr.as.token') | hash('sha512') | to_uuid }}"
  1250. matrix_mautrix_telegram_homeserver_domain: "{{ matrix_domain }}"
  1251. matrix_mautrix_telegram_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1252. matrix_mautrix_telegram_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':telegr.hs.token') | hash('sha512') | to_uuid }}"
  1253. matrix_mautrix_telegram_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  1254. matrix_mautrix_telegram_bridge_login_shared_secret_map_auto: |-
  1255. {{
  1256. ({
  1257. matrix_mautrix_telegram_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  1258. })
  1259. if matrix_appservice_double_puppet_enabled
  1260. else (
  1261. {matrix_mautrix_telegram_homeserver_domain: matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret}
  1262. if matrix_synapse_ext_password_provider_shared_secret_auth_enabled
  1263. else {}
  1264. )
  1265. }}
  1266. matrix_mautrix_telegram_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  1267. matrix_mautrix_telegram_metrics_proxying_enabled: "{{ matrix_mautrix_telegram_metrics_enabled and matrix_metrics_exposure_enabled }}"
  1268. matrix_mautrix_telegram_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  1269. matrix_mautrix_telegram_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/mautrix-telegram"
  1270. # Postgres is the default, except if not using internal Postgres server
  1271. matrix_mautrix_telegram_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1272. matrix_mautrix_telegram_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1273. matrix_mautrix_telegram_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mau.telegram.db') | hash('sha512') | to_uuid }}"
  1274. ######################################################################
  1275. #
  1276. # /matrix-bridge-mautrix-telegram
  1277. #
  1278. ######################################################################
  1279. ######################################################################
  1280. #
  1281. # matrix-bridge-mautrix-twitter
  1282. #
  1283. ######################################################################
  1284. # We don't enable bridges by default.
  1285. matrix_mautrix_twitter_enabled: false
  1286. matrix_mautrix_twitter_systemd_required_services_list_auto: |
  1287. {{
  1288. matrix_addons_homeserver_systemd_services_list
  1289. +
  1290. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_twitter_database_hostname == postgres_connection_hostname) else [])
  1291. }}
  1292. matrix_mautrix_twitter_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_twitter_docker_image_registry_prefix_upstream_default }}"
  1293. matrix_mautrix_twitter_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1294. matrix_mautrix_twitter_container_network: "{{ matrix_addons_container_network }}"
  1295. matrix_mautrix_twitter_container_additional_networks_auto: |-
  1296. {{
  1297. (
  1298. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1299. +
  1300. ([postgres_container_network] if (postgres_enabled and matrix_mautrix_twitter_database_hostname == postgres_connection_hostname and matrix_mautrix_twitter_container_network != postgres_container_network) else [])
  1301. +
  1302. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_mautrix_twitter_container_labels_traefik_enabled else [])
  1303. ) | unique
  1304. }}
  1305. matrix_mautrix_twitter_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1306. matrix_mautrix_twitter_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1307. matrix_mautrix_twitter_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1308. matrix_mautrix_twitter_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1309. matrix_mautrix_twitter_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  1310. matrix_mautrix_twitter_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  1311. matrix_mautrix_twitter_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':twt.as.token') | hash('sha512') | to_uuid }}"
  1312. matrix_mautrix_twitter_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1313. matrix_mautrix_twitter_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':twt.hs.token') | hash('sha512') | to_uuid }}"
  1314. matrix_mautrix_twitter_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  1315. matrix_mautrix_twitter_provisioning_shared_secret: "{{ (matrix_homeserver_generic_secret_key + ':mau.twit.prov') | hash('sha512') | to_uuid }}"
  1316. matrix_mautrix_twitter_double_puppet_secrets_auto: |-
  1317. {{
  1318. ({
  1319. matrix_mautrix_twitter_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  1320. })
  1321. if matrix_appservice_double_puppet_enabled
  1322. else {}
  1323. }}
  1324. matrix_mautrix_twitter_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  1325. matrix_mautrix_twitter_metrics_proxying_enabled: "{{ matrix_mautrix_twitter_metrics_enabled and matrix_metrics_exposure_enabled }}"
  1326. matrix_mautrix_twitter_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  1327. matrix_mautrix_twitter_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/mautrix-twitter"
  1328. matrix_mautrix_twitter_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1329. matrix_mautrix_twitter_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mau.twt.db') | hash('sha512') | to_uuid if postgres_enabled else '' }}"
  1330. ######################################################################
  1331. #
  1332. # /matrix-bridge-mautrix-twitter
  1333. #
  1334. ######################################################################
  1335. ######################################################################
  1336. #
  1337. # matrix-bridge-mautrix-gmessages
  1338. #
  1339. ######################################################################
  1340. # We don't enable bridges by default.
  1341. matrix_mautrix_gmessages_enabled: false
  1342. matrix_mautrix_gmessages_systemd_required_services_list_auto: |
  1343. {{
  1344. matrix_addons_homeserver_systemd_services_list
  1345. +
  1346. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_gmessages_database_hostname == postgres_connection_hostname) else [])
  1347. }}
  1348. matrix_mautrix_gmessages_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_gmessages_docker_image_registry_prefix_upstream_default }}"
  1349. matrix_mautrix_gmessages_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  1350. matrix_mautrix_gmessages_container_network: "{{ matrix_addons_container_network }}"
  1351. matrix_mautrix_gmessages_container_additional_networks_auto: |-
  1352. {{
  1353. (
  1354. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1355. +
  1356. ([postgres_container_network] if (postgres_enabled and matrix_mautrix_gmessages_database_hostname == postgres_connection_hostname and matrix_mautrix_gmessages_container_network != postgres_container_network) else [])
  1357. +
  1358. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_mautrix_gmessages_container_labels_traefik_enabled) else [])
  1359. ) | unique
  1360. }}
  1361. matrix_mautrix_gmessages_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1362. matrix_mautrix_gmessages_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1363. matrix_mautrix_gmessages_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1364. matrix_mautrix_gmessages_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1365. matrix_mautrix_gmessages_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  1366. matrix_mautrix_gmessages_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  1367. matrix_mautrix_gmessages_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':gmessa.as.token') | hash('sha512') | to_uuid }}"
  1368. matrix_mautrix_gmessages_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1369. matrix_mautrix_gmessages_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':gmessa.hs.token') | hash('sha512') | to_uuid }}"
  1370. matrix_mautrix_gmessages_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  1371. matrix_mautrix_gmessages_double_puppet_secrets_auto: |-
  1372. {{
  1373. {
  1374. matrix_mautrix_gmessages_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  1375. }
  1376. if matrix_appservice_double_puppet_enabled
  1377. else {}
  1378. }}
  1379. matrix_mautrix_gmessages_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  1380. matrix_mautrix_gmessages_metrics_proxying_enabled: "{{ matrix_mautrix_gmessages_metrics_enabled and matrix_metrics_exposure_enabled }}"
  1381. matrix_mautrix_gmessages_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  1382. matrix_mautrix_gmessages_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/mautrix-gmessages"
  1383. # Postgres is the default, except if not using internal Postgres server
  1384. matrix_mautrix_gmessages_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1385. matrix_mautrix_gmessages_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1386. matrix_mautrix_gmessages_database_password: "{{ (matrix_homeserver_generic_secret_key + ':maugmessages.db') | hash('sha512') | to_uuid }}"
  1387. ######################################################################
  1388. #
  1389. # /matrix-bridge-mautrix-gmessages
  1390. #
  1391. ######################################################################
  1392. ######################################################################
  1393. #
  1394. # matrix-bridge-mautrix-wsproxy
  1395. #
  1396. ######################################################################
  1397. # We don't enable bridges by default.
  1398. matrix_mautrix_wsproxy_enabled: false
  1399. matrix_mautrix_wsproxy_systemd_required_services_list_default: |
  1400. {{
  1401. matrix_addons_homeserver_systemd_services_list
  1402. +
  1403. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mautrix_wsproxy_syncproxy_database_hostname == postgres_connection_hostname) else [])
  1404. }}
  1405. matrix_mautrix_wsproxy_homeserver_domain: "{{ matrix_domain }}"
  1406. matrix_mautrix_wsproxy_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1407. matrix_mautrix_wsproxy_hostname: "wsproxy.{{ matrix_mautrix_wsproxy_homeserver_domain }}"
  1408. matrix_mautrix_wsproxy_syncproxy_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  1409. matrix_mautrix_wsproxy_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_wsproxy_docker_image_registry_prefix_upstream_default }}"
  1410. matrix_mautrix_wsproxy_container_network: "{{ matrix_addons_container_network }}"
  1411. matrix_mautrix_wsproxy_container_additional_networks: |
  1412. {{
  1413. (
  1414. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1415. +
  1416. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [])
  1417. +
  1418. ([postgres_container_network] if (postgres_enabled and matrix_mautrix_wsproxy_syncproxy_database_hostname == postgres_connection_hostname and postgres_container_network != matrix_mautrix_wsproxy_container_network) else [])
  1419. ) | unique
  1420. }}
  1421. matrix_mautrix_wsproxy_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1422. matrix_mautrix_wsproxy_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1423. matrix_mautrix_wsproxy_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1424. matrix_mautrix_wsproxy_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1425. matrix_mautrix_wsproxy_syncproxy_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1426. matrix_mautrix_wsproxy_syncproxy_database_password: "{{ (matrix_homeserver_generic_secret_key + ':wsproxy.db') | hash('sha512') | to_uuid }}"
  1427. ######################################################################
  1428. #
  1429. # /matrix-bridge-mautrix-wsproxy
  1430. #
  1431. ######################################################################
  1432. ######################################################################
  1433. #
  1434. # matrix-bridge-wechat
  1435. #
  1436. ######################################################################
  1437. # We don't enable bridges by default.
  1438. matrix_wechat_enabled: false
  1439. matrix_wechat_systemd_required_services_list_auto: |
  1440. {{
  1441. matrix_addons_homeserver_systemd_services_list
  1442. +
  1443. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_wechat_database_hostname == postgres_connection_hostname) else [])
  1444. }}
  1445. matrix_wechat_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_wechat_container_image_registry_prefix_upstream_default }}"
  1446. matrix_wechat_agent_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_wechat_agent_container_image_registry_prefix_upstream_default }}"
  1447. matrix_wechat_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1448. matrix_wechat_agent_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  1449. matrix_wechat_container_network: "{{ matrix_addons_container_network }}"
  1450. matrix_wechat_container_additional_networks_auto: |-
  1451. {{
  1452. (
  1453. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1454. +
  1455. ([postgres_container_network] if (postgres_enabled and matrix_wechat_database_hostname == postgres_connection_hostname and matrix_wechat_container_network != postgres_container_network) else [])
  1456. ) | unique
  1457. }}
  1458. matrix_wechat_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':wechat.as.token') | hash('sha512') | to_uuid }}"
  1459. matrix_wechat_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1460. matrix_wechat_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':wechat.hs.token') | hash('sha512') | to_uuid }}"
  1461. matrix_wechat_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  1462. matrix_wechat_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  1463. matrix_wechat_bridge_listen_secret: "{{ (matrix_homeserver_generic_secret_key + ':wechat.lstn') | hash('sha512') | to_uuid }}"
  1464. # Postgres is the default, except if not using internal Postgres server
  1465. matrix_wechat_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1466. matrix_wechat_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1467. matrix_wechat_database_password: "{{ (matrix_homeserver_generic_secret_key + ':gowechat.db') | hash('sha512') | to_uuid }}"
  1468. ######################################################################
  1469. #
  1470. # /matrix-bridge-wechat
  1471. #
  1472. ######################################################################
  1473. ######################################################################
  1474. #
  1475. # matrix-bridge-mautrix-whatsapp
  1476. #
  1477. ######################################################################
  1478. # We don't enable bridges by default.
  1479. matrix_mautrix_whatsapp_enabled: false
  1480. matrix_mautrix_whatsapp_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mautrix_whatsapp_docker_image_registry_prefix_upstream_default }}"
  1481. matrix_mautrix_whatsapp_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  1482. matrix_mautrix_whatsapp_container_network: "{{ matrix_addons_container_network }}"
  1483. matrix_mautrix_whatsapp_container_additional_networks_auto: |-
  1484. {{
  1485. (
  1486. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1487. +
  1488. ([postgres_container_network] if postgres_enabled and matrix_mautrix_whatsapp_database_hostname == postgres_connection_hostname else [])
  1489. +
  1490. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_mautrix_whatsapp_container_labels_traefik_enabled else [])
  1491. ) | unique
  1492. }}
  1493. matrix_mautrix_whatsapp_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1494. matrix_mautrix_whatsapp_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1495. matrix_mautrix_whatsapp_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1496. matrix_mautrix_whatsapp_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1497. matrix_mautrix_whatsapp_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  1498. matrix_mautrix_whatsapp_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  1499. matrix_mautrix_whatsapp_systemd_required_services_list_auto: |
  1500. {{
  1501. matrix_addons_homeserver_systemd_services_list
  1502. +
  1503. ([postgres_identifier ~ '.service'] if postgres_enabled and matrix_mautrix_whatsapp_database_hostname == postgres_connection_hostname else [])
  1504. }}
  1505. matrix_mautrix_whatsapp_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':wa.as.token') | hash('sha512') | to_uuid }}"
  1506. matrix_mautrix_whatsapp_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1507. matrix_mautrix_whatsapp_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':wa.hs.token') | hash('sha512') | to_uuid }}"
  1508. matrix_mautrix_whatsapp_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  1509. matrix_mautrix_whatsapp_double_puppet_secrets_auto: |-
  1510. {{
  1511. {
  1512. matrix_mautrix_whatsapp_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  1513. }
  1514. if matrix_appservice_double_puppet_enabled
  1515. else {}
  1516. }}
  1517. matrix_mautrix_whatsapp_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  1518. matrix_mautrix_whatsapp_metrics_proxying_enabled: "{{ matrix_mautrix_whatsapp_metrics_enabled and matrix_metrics_exposure_enabled }}"
  1519. matrix_mautrix_whatsapp_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  1520. matrix_mautrix_whatsapp_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/mautrix-whatsapp"
  1521. # Postgres is the default, except if not using internal Postgres server
  1522. matrix_mautrix_whatsapp_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1523. matrix_mautrix_whatsapp_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1524. matrix_mautrix_whatsapp_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mauwhatsapp.db') | hash('sha512') | to_uuid }}"
  1525. ######################################################################
  1526. #
  1527. # /matrix-bridge-mautrix-whatsapp
  1528. #
  1529. ######################################################################
  1530. ######################################################################
  1531. #
  1532. # matrix-sms-bridge
  1533. #
  1534. ######################################################################
  1535. # We don't enable bridges by default.
  1536. matrix_sms_bridge_enabled: false
  1537. matrix_sms_bridge_systemd_required_services_list_auto: |
  1538. {{
  1539. matrix_addons_homeserver_systemd_services_list
  1540. }}
  1541. matrix_sms_bridge_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_sms_bridge_docker_image_registry_prefix_upstream_default }}"
  1542. matrix_sms_bridge_container_network: "{{ matrix_addons_container_network }}"
  1543. matrix_sms_bridge_container_additional_networks_auto: |-
  1544. {{
  1545. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1546. }}
  1547. matrix_sms_bridge_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':sms.as.token') | hash('sha512') | to_uuid }}"
  1548. matrix_sms_bridge_homeserver_hostname: "{{ (matrix_homeserver_container_client_api_endpoint | split(':'))[0] }}"
  1549. matrix_sms_bridge_homeserver_port: "{{ (matrix_homeserver_container_client_api_endpoint | split(':'))[1] }}"
  1550. matrix_sms_bridge_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':sms.hs.token') | hash('sha512') | to_uuid }}"
  1551. ######################################################################
  1552. #
  1553. # /matrix-sms-bridge
  1554. #
  1555. ######################################################################
  1556. ######################################################################
  1557. #
  1558. # matrix-bridge-heisenbridge
  1559. #
  1560. ######################################################################
  1561. # We don't enable bridges by default.
  1562. matrix_heisenbridge_enabled: false
  1563. matrix_heisenbridge_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  1564. matrix_heisenbridge_systemd_required_services_list_auto: |
  1565. {{
  1566. matrix_addons_homeserver_systemd_services_list
  1567. }}
  1568. matrix_heisenbridge_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_heisenbridge_docker_image_registry_prefix_upstream_default }}"
  1569. matrix_heisenbridge_container_network: "{{ matrix_addons_container_network }}"
  1570. matrix_heisenbridge_container_additional_networks_auto: |-
  1571. {{
  1572. (
  1573. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1574. +
  1575. [matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_heisenbridge_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else []
  1576. ) | unique
  1577. }}
  1578. matrix_heisenbridge_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1579. matrix_heisenbridge_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1580. matrix_heisenbridge_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1581. matrix_heisenbridge_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1582. matrix_heisenbridge_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':heisen.as.tok') | hash('sha512') | to_uuid }}"
  1583. matrix_heisenbridge_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':heisen.hs.tok') | hash('sha512') | to_uuid }}"
  1584. matrix_heisenbridge_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  1585. ######################################################################
  1586. #
  1587. # /matrix-bridge-heisenbridge
  1588. #
  1589. ######################################################################
  1590. ######################################################################
  1591. #
  1592. # matrix-bridge-hookshot
  1593. #
  1594. ######################################################################
  1595. # We don't enable bridges by default.
  1596. matrix_hookshot_enabled: false
  1597. matrix_hookshot_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_hookshot_docker_image_registry_prefix_upstream_default }}"
  1598. matrix_hookshot_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  1599. matrix_hookshot_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':hookshot.as.tok') | hash('sha512') | to_uuid }}"
  1600. matrix_hookshot_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':hookshot.hs.tok') | hash('sha512') | to_uuid }}"
  1601. matrix_hookshot_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1602. matrix_hookshot_systemd_wanted_services_list: |
  1603. {{
  1604. matrix_addons_homeserver_systemd_services_list
  1605. +
  1606. ([(valkey_identifier + '.service')] if valkey_enabled and matrix_hookshot_cache_redis_host == valkey_identifier else [])
  1607. }}
  1608. # Hookshot's experimental encryption feature (and possibly others) may benefit from Redis, if available.
  1609. # We only connect to Redis if encryption is enabled (not for everyone who has Redis enabled),
  1610. # because connectivity is still potentially troublesome and is to be investigated.
  1611. matrix_hookshot_cache_redis_host: "{{ valkey_identifier if valkey_enabled else '' }}"
  1612. matrix_hookshot_container_network: "{{ matrix_addons_container_network }}"
  1613. matrix_hookshot_container_additional_networks_auto: |
  1614. {{
  1615. (
  1616. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1617. +
  1618. ([valkey_container_network] if valkey_enabled and matrix_hookshot_cache_redis_host == valkey_identifier else [])
  1619. +
  1620. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_hookshot_container_labels_traefik_enabled else [])
  1621. ) | unique
  1622. }}
  1623. matrix_hookshot_container_http_host_bind_ports_defaultmapping:
  1624. - "{{ matrix_playbook_service_host_bind_interface_prefix }}{{ matrix_hookshot_appservice_port }}:{{ matrix_hookshot_appservice_port }}"
  1625. - "{{ matrix_playbook_service_host_bind_interface_prefix }}{{ matrix_hookshot_metrics_port }}:{{ matrix_hookshot_metrics_port }}"
  1626. - "{{ matrix_playbook_service_host_bind_interface_prefix }}{{ matrix_hookshot_webhook_port }}:{{ matrix_hookshot_webhook_port }}"
  1627. matrix_hookshot_container_http_host_bind_ports: "{{ matrix_hookshot_container_http_host_bind_ports_defaultmapping if matrix_playbook_service_host_bind_interface_prefix else [] }}"
  1628. matrix_hookshot_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1629. matrix_hookshot_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1630. matrix_hookshot_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1631. matrix_hookshot_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1632. matrix_hookshot_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  1633. matrix_hookshot_metrics_proxying_enabled: "{{ matrix_hookshot_metrics_enabled and matrix_metrics_exposure_enabled }}"
  1634. matrix_hookshot_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  1635. matrix_hookshot_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/hookshot"
  1636. matrix_hookshot_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  1637. matrix_hookshot_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  1638. matrix_hookshot_public_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  1639. matrix_hookshot_public_hostname: "{{ matrix_server_fqn_matrix }}"
  1640. ######################################################################
  1641. #
  1642. # /matrix-bridge-hookshot
  1643. #
  1644. ######################################################################
  1645. ######################################################################
  1646. #
  1647. # matrix-bridge-mx-puppet-steam
  1648. #
  1649. ######################################################################
  1650. # We don't enable bridges by default.
  1651. matrix_mx_puppet_steam_enabled: false
  1652. matrix_mx_puppet_steam_systemd_required_services_list_auto: |
  1653. {{
  1654. matrix_addons_homeserver_systemd_services_list
  1655. +
  1656. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mx_puppet_steam_database_hostname == postgres_connection_hostname) else [])
  1657. }}
  1658. matrix_mx_puppet_steam_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mx_puppet_steam_docker_image_registry_prefix_upstream_default }}"
  1659. matrix_mx_puppet_steam_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  1660. matrix_mx_puppet_steam_container_network: "{{ matrix_addons_container_network }}"
  1661. matrix_mx_puppet_steam_container_additional_networks_auto: |-
  1662. {{
  1663. (
  1664. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1665. +
  1666. ([postgres_container_network] if (postgres_enabled and matrix_mx_puppet_steam_database_hostname == postgres_connection_hostname and matrix_mx_puppet_steam_container_network != postgres_container_network) else [])
  1667. ) | unique
  1668. }}
  1669. matrix_mx_puppet_steam_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':mxste.as.tok') | hash('sha512') | to_uuid }}"
  1670. matrix_mx_puppet_steam_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1671. matrix_mx_puppet_steam_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':mxste.hs.tok') | hash('sha512') | to_uuid }}"
  1672. matrix_mx_puppet_steam_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  1673. matrix_mx_puppet_steam_presence_enabled: "{{ matrix_homeserver_implementation != 'synapse' or matrix_synapse_presence_enabled }}"
  1674. # Postgres is the default, except if not using internal Postgres server
  1675. matrix_mx_puppet_steam_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1676. matrix_mx_puppet_steam_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1677. matrix_mx_puppet_steam_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mxpup.steam.db') | hash('sha512') | to_uuid }}"
  1678. ######################################################################
  1679. #
  1680. # /matrix-bridge-mx-puppet-steam
  1681. #
  1682. ######################################################################
  1683. ######################################################################
  1684. #
  1685. # matrix-bridge-mx-puppet-groupme
  1686. #
  1687. ######################################################################
  1688. # We don't enable bridges by default.
  1689. matrix_mx_puppet_groupme_enabled: false
  1690. matrix_mx_puppet_groupme_systemd_required_services_list_auto: |
  1691. {{
  1692. matrix_addons_homeserver_systemd_services_list
  1693. +
  1694. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_mx_puppet_groupme_database_hostname == postgres_connection_hostname) else [])
  1695. }}
  1696. matrix_mx_puppet_groupme_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_mx_puppet_groupme_docker_image_registry_prefix_upstream_default }}"
  1697. matrix_mx_puppet_groupme_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1698. matrix_mx_puppet_groupme_container_network: "{{ matrix_addons_container_network }}"
  1699. matrix_mx_puppet_groupme_container_additional_networks_auto: |-
  1700. {{
  1701. (
  1702. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1703. +
  1704. ([postgres_container_network] if (postgres_enabled and matrix_mx_puppet_groupme_database_hostname == postgres_connection_hostname and matrix_mx_puppet_groupme_container_network != postgres_container_network) else [])
  1705. ) | unique
  1706. }}
  1707. matrix_mx_puppet_groupme_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':mxgro.as.tok') | hash('sha512') | to_uuid }}"
  1708. matrix_mx_puppet_groupme_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1709. matrix_mx_puppet_groupme_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':mxgro.hs.tok') | hash('sha512') | to_uuid }}"
  1710. matrix_mx_puppet_groupme_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  1711. matrix_mx_puppet_groupme_presence_enabled: "{{ matrix_homeserver_implementation != 'synapse' or matrix_synapse_presence_enabled }}"
  1712. # Postgres is the default, except if not using internal Postgres server
  1713. matrix_mx_puppet_groupme_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1714. matrix_mx_puppet_groupme_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1715. matrix_mx_puppet_groupme_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mxpup.groupme.db') | hash('sha512') | to_uuid }}"
  1716. ######################################################################
  1717. #
  1718. # /matrix-bridge-mx-puppet-groupme
  1719. #
  1720. ######################################################################
  1721. ######################################################################
  1722. #
  1723. # matrix-bridge-postmoogle
  1724. #
  1725. ######################################################################
  1726. # We don't enable bridges by default.
  1727. matrix_postmoogle_enabled: false
  1728. matrix_postmoogle_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_postmoogle_docker_image_registry_prefix_upstream_default }}"
  1729. matrix_postmoogle_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1730. matrix_postmoogle_ssl_path: |-
  1731. {{
  1732. {
  1733. 'playbook-managed-traefik': (traefik_certs_dumper_dumped_certificates_path if traefik_certs_dumper_enabled else ''),
  1734. 'other-traefik-container': (traefik_certs_dumper_dumped_certificates_path if traefik_certs_dumper_enabled else ''),
  1735. 'none': '',
  1736. }[matrix_playbook_reverse_proxy_type]
  1737. }}
  1738. matrix_playbook_bridge_postmoogle_traefik_tls_cert: "{% for domain in matrix_postmoogle_domains %}/ssl/{{ domain }}/certificate.crt {% endfor %}"
  1739. matrix_playbook_bridge_postmoogle_traefik_key: "{% for domain in matrix_postmoogle_domains %}/ssl/{{ domain }}/privatekey.key {% endfor %}"
  1740. matrix_postmoogle_tls_cert: |-
  1741. {{
  1742. {
  1743. 'playbook-managed-traefik': (matrix_playbook_bridge_postmoogle_traefik_tls_cert if traefik_certs_dumper_enabled else ''),
  1744. 'other-traefik-container': (matrix_playbook_bridge_postmoogle_traefik_tls_cert if traefik_certs_dumper_enabled else ''),
  1745. 'none': '',
  1746. }[matrix_playbook_reverse_proxy_type]
  1747. }}
  1748. matrix_postmoogle_tls_key: |-
  1749. {{
  1750. {
  1751. 'playbook-managed-traefik': (matrix_playbook_bridge_postmoogle_traefik_key if traefik_certs_dumper_enabled else ''),
  1752. 'other-traefik-container': (matrix_playbook_bridge_postmoogle_traefik_key if traefik_certs_dumper_enabled else ''),
  1753. 'none': '',
  1754. }[matrix_playbook_reverse_proxy_type]
  1755. }}
  1756. matrix_playbook_bridge_postmoogle_traefik_certs_dumper_waiter_services: "{% for domain in matrix_postmoogle_domains %}{{ traefik_certs_dumper_identifier }}-wait-for-domain@{{ domain }}.service {% endfor %}"
  1757. matrix_postmoogle_systemd_required_services_list_auto: |
  1758. {{
  1759. matrix_addons_homeserver_systemd_services_list
  1760. +
  1761. ([postgres_identifier ~ '.service'] if postgres_enabled and matrix_postmoogle_database_hostname == matrix_postmoogle_database_hostname else [])
  1762. +
  1763. (matrix_playbook_bridge_postmoogle_traefik_certs_dumper_waiter_services | trim | split(' ') if matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and traefik_certs_dumper_enabled else [])
  1764. }}
  1765. # Postgres is the default, except if not using internal Postgres server
  1766. matrix_postmoogle_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1767. matrix_postmoogle_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1768. matrix_postmoogle_database_password: "{{ (matrix_homeserver_generic_secret_key + ':postmoogle.db') | hash('sha512') | to_uuid }}"
  1769. matrix_postmoogle_homeserver: "{{ matrix_addons_homeserver_client_api_url }}"
  1770. matrix_postmoogle_container_network: "{{ matrix_addons_container_network }}"
  1771. matrix_postmoogle_container_additional_networks_auto: |-
  1772. {{
  1773. (
  1774. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1775. +
  1776. ([postgres_container_network] if postgres_enabled and matrix_bot_matrix_reminder_bot_database_hostname == postgres_connection_hostname else [])
  1777. ) | unique
  1778. }}
  1779. ######################################################################
  1780. #
  1781. # /matrix-bridge-postmoogle
  1782. #
  1783. ######################################################################
  1784. ######################################################################
  1785. #
  1786. # matrix-bridge-steam
  1787. #
  1788. ######################################################################
  1789. # We don't enable bridges by default.
  1790. matrix_steam_bridge_enabled: false
  1791. matrix_steam_bridge_systemd_required_services_list_auto: |
  1792. {{
  1793. matrix_addons_homeserver_systemd_services_list
  1794. +
  1795. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_steam_bridge_database_hostname == postgres_connection_hostname) else [])
  1796. }}
  1797. matrix_steam_bridge_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_steam_bridge_docker_image_registry_prefix_upstream_default }}"
  1798. matrix_steam_bridge_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1799. matrix_steam_bridge_container_network: "{{ matrix_addons_container_network }}"
  1800. matrix_steam_bridge_container_additional_networks_auto: |-
  1801. {{
  1802. (
  1803. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1804. +
  1805. ([postgres_container_network] if (postgres_enabled and matrix_steam_bridge_database_hostname == postgres_connection_hostname and matrix_steam_bridge_container_network != postgres_container_network) else [])
  1806. +
  1807. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_steam_bridge_container_labels_traefik_enabled else [])
  1808. ) | unique
  1809. }}
  1810. matrix_steam_bridge_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1811. matrix_steam_bridge_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1812. matrix_steam_bridge_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1813. matrix_steam_bridge_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1814. matrix_steam_bridge_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  1815. matrix_steam_bridge_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  1816. matrix_steam_bridge_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':steam.as.token') | hash('sha512') | to_uuid }}"
  1817. matrix_steam_bridge_homeserver_address: "{{ matrix_addons_homeserver_client_api_url }}"
  1818. matrix_steam_bridge_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':steam.hs.token') | hash('sha512') | to_uuid }}"
  1819. matrix_steam_bridge_homeserver_async_media: "{{ matrix_homeserver_implementation in ['synapse'] }}"
  1820. matrix_steam_bridge_public_media_signing_key: "{{ ((matrix_homeserver_generic_secret_key + ':steam.pub.key') | hash('sha512') | to_uuid) if matrix_steam_bridge_public_media_enabled else '' }}"
  1821. matrix_steam_bridge_provisioning_shared_secret: "{{ (matrix_homeserver_generic_secret_key + ':steam.prov') | hash('sha512') | to_uuid }}"
  1822. matrix_steam_bridge_double_puppet_secrets_auto: |-
  1823. {{
  1824. ({
  1825. matrix_steam_bridge_homeserver_domain: ("as_token:" + matrix_appservice_double_puppet_registration_as_token)
  1826. })
  1827. if matrix_appservice_double_puppet_enabled
  1828. else {}
  1829. }}
  1830. matrix_steam_bridge_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  1831. matrix_steam_bridge_metrics_proxying_enabled: "{{ matrix_steam_bridge_metrics_enabled and matrix_metrics_exposure_enabled }}"
  1832. matrix_steam_bridge_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  1833. matrix_steam_bridge_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/matrix-steam-bridge"
  1834. matrix_steam_bridge_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1835. matrix_steam_bridge_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mau.twt.db') | hash('sha512') | to_uuid if postgres_enabled else '' }}"
  1836. ######################################################################
  1837. #
  1838. # /matrix-bridge-steam
  1839. #
  1840. ######################################################################
  1841. ######################################################################
  1842. #
  1843. # matrix-bot-matrix-reminder-bot
  1844. #
  1845. ######################################################################
  1846. # We don't enable bots by default.
  1847. matrix_bot_matrix_reminder_bot_enabled: false
  1848. matrix_bot_matrix_reminder_bot_systemd_required_services_list_auto: |
  1849. {{
  1850. matrix_addons_homeserver_systemd_services_list
  1851. +
  1852. ([postgres_identifier ~ '.service'] if postgres_enabled and matrix_bot_matrix_reminder_bot_database_hostname == postgres_connection_hostname else [])
  1853. }}
  1854. matrix_bot_matrix_reminder_bot_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_bot_matrix_reminder_bot_docker_image_registry_prefix_upstream_default }}"
  1855. matrix_bot_matrix_reminder_bot_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1856. matrix_bot_matrix_reminder_bot_container_network: "{{ matrix_addons_container_network }}"
  1857. matrix_bot_matrix_reminder_bot_container_additional_networks_auto: |-
  1858. {{
  1859. (
  1860. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1861. +
  1862. ([postgres_container_network] if postgres_enabled and matrix_bot_matrix_reminder_bot_database_hostname == postgres_connection_hostname else [])
  1863. ) | unique
  1864. }}
  1865. matrix_bot_matrix_reminder_bot_matrix_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  1866. # Postgres is the default, except if not using internal Postgres server
  1867. matrix_bot_matrix_reminder_bot_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1868. matrix_bot_matrix_reminder_bot_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1869. matrix_bot_matrix_reminder_bot_database_password: "{{ (matrix_homeserver_generic_secret_key + ':reminder.bot.db') | hash('sha512') | to_uuid }}"
  1870. matrix_bot_matrix_reminder_bot_allowlist_enabled: true
  1871. matrix_bot_matrix_reminder_bot_allowlist_regexes_auto:
  1872. - "@[a-z0-9-_.]+:{{ matrix_domain }}"
  1873. ######################################################################
  1874. #
  1875. # /matrix-bot-matrix-reminder-bot
  1876. #
  1877. ######################################################################
  1878. ######################################################################
  1879. #
  1880. # matrix-bot-matrix-registration-bot
  1881. #
  1882. ######################################################################
  1883. # We don't enable bots by default.
  1884. matrix_bot_matrix_registration_bot_enabled: false
  1885. matrix_bot_matrix_registration_bot_systemd_required_services_list_auto: |
  1886. {{
  1887. matrix_addons_homeserver_systemd_services_list
  1888. }}
  1889. matrix_bot_matrix_registration_bot_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_bot_matrix_registration_bot_docker_image_registry_prefix_upstream_default }}"
  1890. matrix_bot_matrix_registration_bot_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  1891. matrix_bot_matrix_registration_bot_container_network: "{{ matrix_addons_container_network }}"
  1892. matrix_bot_matrix_registration_bot_container_additional_networks_auto: |-
  1893. {{
  1894. ([matrix_homeserver_container_network] if matrix_bot_matrix_registration_bot_container_network != matrix_homeserver_container_network else [])
  1895. }}
  1896. # Using `matrix_addons_homeserver_client_api_url` would not work here,
  1897. # because `matrix-traefik:8008` (matrix-internal-client-api) does not expose any `/_synapse` paths.
  1898. matrix_bot_matrix_registration_bot_api_base_url: "{{ matrix_homeserver_container_url }}"
  1899. ######################################################################
  1900. #
  1901. # /matrix-bot-matrix-registration-bot
  1902. #
  1903. ######################################################################
  1904. ######################################################################
  1905. #
  1906. # matrix-bot-maubot
  1907. #
  1908. ######################################################################
  1909. # We don't enable bots by default.
  1910. matrix_bot_maubot_enabled: false
  1911. matrix_bot_maubot_systemd_required_services_list_auto: |
  1912. {{
  1913. matrix_addons_homeserver_systemd_services_list
  1914. +
  1915. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_bot_maubot_database_hostname == postgres_connection_hostname) else [])
  1916. }}
  1917. matrix_bot_maubot_hostname: "{{ matrix_server_fqn_matrix }}"
  1918. matrix_bot_maubot_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  1919. matrix_bot_maubot_homeserver_secret: |-
  1920. {{
  1921. {
  1922. 'synapse': matrix_synapse_registration_shared_secret | default(''),
  1923. 'dendrite': matrix_dendrite_client_api_registration_shared_secret | default(''),
  1924. }[matrix_homeserver_implementation] | default('')
  1925. }}
  1926. matrix_bot_maubot_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_bot_maubot_docker_image_registry_prefix_upstream_default }}"
  1927. matrix_bot_maubot_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  1928. matrix_bot_maubot_container_management_interface_http_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '' ~ matrix_bot_maubot_server_port | string) if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  1929. matrix_bot_maubot_container_network: "{{ matrix_addons_container_network }}"
  1930. matrix_bot_maubot_container_additional_networks_auto: |-
  1931. {{
  1932. (
  1933. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1934. +
  1935. ([postgres_container_network] if (postgres_enabled and matrix_bot_maubot_database_hostname == postgres_connection_hostname and matrix_bot_maubot_container_network != postgres_container_network) else [])
  1936. +
  1937. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_bot_maubot_container_labels_traefik_enabled else [])
  1938. ) | unique
  1939. }}
  1940. matrix_bot_maubot_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  1941. matrix_bot_maubot_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1942. matrix_bot_maubot_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1943. matrix_bot_maubot_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1944. matrix_bot_maubot_container_labels_management_hostname: "{{ matrix_server_fqn_matrix }}"
  1945. # Postgres is the default, except if not using internal Postgres server
  1946. matrix_bot_maubot_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1947. matrix_bot_maubot_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1948. matrix_bot_maubot_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mxpup.dsc.db') | hash('sha512') | to_uuid }}"
  1949. ######################################################################
  1950. #
  1951. # /matrix-bot-maubot
  1952. #
  1953. ######################################################################
  1954. ######################################################################
  1955. #
  1956. # matrix-bot-honoroit
  1957. #
  1958. ######################################################################
  1959. # We don't enable bots by default.
  1960. matrix_bot_honoroit_enabled: false
  1961. matrix_bot_honoroit_hostname: "{{ matrix_server_fqn_matrix }}"
  1962. matrix_bot_honoroit_path_prefix: /honoroit
  1963. matrix_bot_honoroit_systemd_required_services_list_auto: |
  1964. {{
  1965. matrix_addons_homeserver_systemd_services_list
  1966. +
  1967. ([postgres_identifier ~ '.service'] if postgres_enabled and matrix_bot_honoroit_database_hostname == postgres_connection_hostname else [])
  1968. }}
  1969. matrix_bot_honoroit_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_bot_honoroit_docker_image_registry_prefix_upstream_default }}"
  1970. matrix_bot_honoroit_container_network: "{{ matrix_addons_container_network }}"
  1971. matrix_bot_honoroit_container_additional_networks: |
  1972. {{
  1973. (
  1974. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  1975. +
  1976. ([postgres_container_network] if (postgres_enabled and matrix_bot_honoroit_database_hostname == postgres_connection_hostname and matrix_bot_honoroit_container_network != postgres_container_network) else [])
  1977. +
  1978. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_bot_honoroit_container_labels_traefik_enabled else [])
  1979. ) | unique
  1980. }}
  1981. matrix_bot_honoroit_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  1982. matrix_bot_honoroit_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1983. matrix_bot_honoroit_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  1984. matrix_bot_honoroit_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  1985. # For consistency with other things hosted at the Matrix FQN, we adjust the metrics endpoint
  1986. # so that metrics would be served at something like `/metrics/SERVICE_NAME`, and not at the default path for the role (`PREFIX/metrics`).
  1987. matrix_bot_honoroit_container_labels_traefik_metrics_path: "{{ matrix_metrics_exposure_path_prefix }}/honoroit"
  1988. matrix_bot_honoroit_homeserver: "{{ matrix_addons_homeserver_client_api_url }}"
  1989. # Postgres is the default, except if not using internal Postgres server
  1990. matrix_bot_honoroit_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  1991. matrix_bot_honoroit_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  1992. matrix_bot_honoroit_database_password: "{{ (matrix_homeserver_generic_secret_key + ':honoroit.bot.db') | hash('sha512') | to_uuid }}"
  1993. matrix_bot_honoroit_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1994. ######################################################################
  1995. #
  1996. # /matrix-bot-honoroit
  1997. #
  1998. ######################################################################
  1999. ######################################################################
  2000. #
  2001. # matrix-bot-buscarron
  2002. #
  2003. ######################################################################
  2004. # We don't enable bots by default.
  2005. matrix_bot_buscarron_enabled: false
  2006. matrix_bot_buscarron_hostname: "{{ matrix_server_fqn_buscarron }}"
  2007. matrix_bot_buscarron_systemd_required_services_list_auto: |
  2008. {{
  2009. matrix_addons_homeserver_systemd_services_list
  2010. +
  2011. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_bot_buscarron_database_hostname == postgres_connection_hostname) else [])
  2012. }}
  2013. matrix_bot_buscarron_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_bot_buscarron_docker_image_registry_prefix_upstream_default }}"
  2014. matrix_bot_buscarron_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  2015. matrix_bot_buscarron_container_network: "{{ matrix_addons_container_network }}"
  2016. matrix_bot_buscarron_container_additional_networks_auto: |-
  2017. {{
  2018. (
  2019. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  2020. +
  2021. ([postgres_container_network] if (postgres_enabled and matrix_bot_buscarron_database_hostname == postgres_connection_hostname and matrix_bot_buscarron_container_network != postgres_container_network) else [])
  2022. +
  2023. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_bot_buscarron_container_labels_traefik_enabled else [])
  2024. ) | unique
  2025. }}
  2026. matrix_bot_buscarron_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  2027. matrix_bot_buscarron_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2028. matrix_bot_buscarron_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2029. matrix_bot_buscarron_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2030. matrix_bot_buscarron_homeserver: "{{ matrix_addons_homeserver_client_api_url }}"
  2031. # Postgres is the default, except if not using internal Postgres server
  2032. matrix_bot_buscarron_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  2033. matrix_bot_buscarron_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  2034. matrix_bot_buscarron_database_password: "{{ (matrix_homeserver_generic_secret_key + ':buscarron.bot.db') | hash('sha512') | to_uuid }}"
  2035. ######################################################################
  2036. #
  2037. # /matrix-bot-buscarron
  2038. #
  2039. ######################################################################
  2040. ######################################################################
  2041. #
  2042. # matrix-bot-baibot
  2043. #
  2044. ######################################################################
  2045. # We don't enable bots by default.
  2046. matrix_bot_baibot_enabled: false
  2047. matrix_bot_baibot_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_bot_baibot_container_image_registry_prefix_upstream_default }}"
  2048. matrix_bot_baibot_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  2049. matrix_bot_baibot_systemd_required_services_list_auto: |
  2050. {{
  2051. matrix_addons_homeserver_systemd_services_list
  2052. }}
  2053. matrix_bot_baibot_config_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  2054. matrix_bot_baibot_container_network: "{{ matrix_addons_container_network }}"
  2055. matrix_bot_baibot_container_additional_networks_auto: |-
  2056. {{
  2057. (
  2058. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  2059. ) | unique
  2060. }}
  2061. ######################################################################
  2062. #
  2063. # /matrix-bot-baibot
  2064. #
  2065. ######################################################################
  2066. ######################################################################
  2067. #
  2068. # matrix-bot-mjolnir
  2069. #
  2070. ######################################################################
  2071. # We don't enable bots by default.
  2072. matrix_bot_mjolnir_enabled: false
  2073. matrix_bot_mjolnir_systemd_required_services_list_auto: |
  2074. {{
  2075. matrix_addons_homeserver_systemd_services_list
  2076. +
  2077. (['matrix-pantalaimon.service'] if matrix_bot_mjolnir_pantalaimon_use else [])
  2078. }}
  2079. matrix_bot_mjolnir_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_bot_mjolnir_docker_image_registry_prefix_upstream_default }}"
  2080. matrix_bot_mjolnir_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  2081. matrix_bot_mjolnir_container_network: "{{ matrix_addons_container_network }}"
  2082. matrix_bot_mjolnir_container_additional_networks_auto: |-
  2083. {{
  2084. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  2085. }}
  2086. matrix_bot_mjolnir_homeserver_url: "{{ 'http://matrix-pantalaimon:8009' if matrix_bot_mjolnir_pantalaimon_use else matrix_addons_homeserver_client_api_url }}"
  2087. matrix_bot_mjolnir_raw_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  2088. ######################################################################
  2089. #
  2090. # /matrix-bot-mjolnir
  2091. #
  2092. ######################################################################
  2093. ######################################################################
  2094. #
  2095. # matrix-bot-draupnir
  2096. #
  2097. ######################################################################
  2098. # We don't enable bots by default.
  2099. matrix_bot_draupnir_enabled: false
  2100. matrix_bot_draupnir_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8769') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2101. matrix_bot_draupnir_systemd_required_services_list_auto: |
  2102. {{
  2103. matrix_addons_homeserver_systemd_services_list
  2104. +
  2105. (['matrix-pantalaimon.service'] if matrix_bot_draupnir_pantalaimon_use else [])
  2106. }}
  2107. matrix_bot_draupnir_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_bot_draupnir_docker_image_registry_prefix_upstream_default }}"
  2108. matrix_bot_draupnir_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  2109. matrix_bot_draupnir_container_network: "{{ matrix_addons_container_network }}"
  2110. matrix_bot_draupnir_container_additional_networks_auto: |-
  2111. {{
  2112. (
  2113. ([] if matrix_addons_homeserver_container_network == '' else
  2114. [matrix_addons_homeserver_container_network])
  2115. +
  2116. ([matrix_playbook_reverse_proxyable_services_additional_network] if
  2117. (matrix_playbook_reverse_proxyable_services_additional_network and matrix_bot_draupnir_container_labels_traefik_enabled) else [])
  2118. +
  2119. ([matrix_pantalaimon_container_network] if (matrix_bot_draupnir_pantalaimon_use and matrix_pantalaimon_container_network != matrix_bot_draupnir_container_network) else [])
  2120. ) | unique
  2121. }}
  2122. matrix_bot_draupnir_config_homeserverUrl: "{{ 'http://matrix-pantalaimon:8009' if matrix_bot_draupnir_pantalaimon_use else matrix_addons_homeserver_client_api_url }}" # noqa var-naming
  2123. matrix_bot_draupnir_config_rawHomeserverUrl: "{{ matrix_addons_homeserver_client_api_url }}" # noqa var-naming
  2124. matrix_bot_draupnir_container_labels_traefik_enabled: "{{ matrix_bot_draupnir_config_web_enabled and matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  2125. matrix_bot_draupnir_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2126. matrix_bot_draupnir_container_labels_web_abuseReporting_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2127. matrix_bot_draupnir_container_labels_web_abuseReporting_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2128. #The salt is size restricted here as a maximum salt size of 16 characters exists due to the functions used.
  2129. matrix_bot_draupnir_config_web_synapseHTTPAntispam_authorization: "{{ (matrix_homeserver_generic_secret_key + ':draupnir.httpmod') | hash('sha512') | to_uuid }}" # noqa var-naming
  2130. ######################################################################
  2131. #
  2132. # /matrix-bot-draupnir
  2133. #
  2134. ######################################################################
  2135. ######################################################################
  2136. #
  2137. # matrix-appservice-draupnir-for-all
  2138. #
  2139. ######################################################################
  2140. # We don't enable bots by default.
  2141. matrix_appservice_draupnir_for_all_enabled: false
  2142. matrix_appservice_draupnir_for_all_systemd_required_services_list_auto: |
  2143. {{
  2144. matrix_addons_homeserver_systemd_services_list
  2145. +
  2146. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_appservice_draupnir_for_all_database_hostname == postgres_connection_hostname) else [])
  2147. }}
  2148. matrix_appservice_draupnir_for_all_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_appservice_draupnir_for_all_docker_image_registry_prefix_upstream_default }}"
  2149. matrix_appservice_draupnir_for_all_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  2150. matrix_appservice_draupnir_for_all_container_network: "{{ matrix_addons_container_network }}"
  2151. matrix_appservice_draupnir_for_all_container_additional_networks_auto: |-
  2152. {{
  2153. (
  2154. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  2155. +
  2156. ([postgres_container_network] if (postgres_enabled and matrix_appservice_draupnir_for_all_database_hostname == postgres_connection_hostname and matrix_appservice_draupnir_for_all_container_network != postgres_container_network) else [])
  2157. ) | unique
  2158. }}
  2159. matrix_appservice_draupnir_for_all_appservice_token: "{{ (matrix_homeserver_generic_secret_key + ':d4a.as.token') | hash('sha512') | to_uuid }}"
  2160. matrix_appservice_draupnir_for_all_homeserver_token: "{{ (matrix_homeserver_generic_secret_key + ':d4a.hs.token') | hash('sha512') | to_uuid }}"
  2161. matrix_appservice_draupnir_for_all_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  2162. matrix_appservice_draupnir_for_all_database_password: "{{ (matrix_homeserver_generic_secret_key + ':as.d4a.db') | hash('sha512') | to_uuid }}"
  2163. ######################################################################
  2164. #
  2165. # /matrix-appservice-draupnir-for-all
  2166. #
  2167. ######################################################################
  2168. ######################################################################
  2169. #
  2170. # matrix-appservice-double-puppet
  2171. #
  2172. ######################################################################
  2173. matrix_appservice_double_puppet_enabled: false
  2174. matrix_appservice_double_puppet_registration_as_token: "{{ (matrix_homeserver_generic_secret_key + ':as.doub.pup') | hash('sha512') | to_uuid }}"
  2175. matrix_appservice_double_puppet_registration_hs_token: "{{ (matrix_homeserver_generic_secret_key + ':hs.doub.pup') | hash('sha512') | to_uuid }}"
  2176. ######################################################################
  2177. #
  2178. # /matrix-appservice-double-puppet
  2179. #
  2180. ######################################################################
  2181. ######################################################################
  2182. #
  2183. # matrix-pantalaimon
  2184. #
  2185. ######################################################################
  2186. matrix_pantalaimon_enabled: false
  2187. matrix_pantalaimon_systemd_required_services_list_auto: |
  2188. {{
  2189. matrix_addons_homeserver_systemd_services_list
  2190. }}
  2191. matrix_pantalaimon_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_pantalaimon_docker_image_registry_prefix_upstream_default }}"
  2192. matrix_pantalaimon_container_network: "{{ matrix_homeserver_container_network }}"
  2193. matrix_pantalaimon_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  2194. matrix_pantalaimon_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  2195. ######################################################################
  2196. #
  2197. # /matrix-pantalaimon
  2198. #
  2199. ######################################################################
  2200. ######################################################################
  2201. #
  2202. # etke/backup_borg
  2203. #
  2204. ######################################################################
  2205. backup_borg_enabled: false
  2206. backup_borg_identifier: matrix-backup-borg
  2207. backup_borg_storage_archive_name_format: matrix-{now:%Y-%m-%d-%H%M%S}
  2208. backup_borg_base_path: "{{ matrix_base_data_path }}/backup-borg"
  2209. backup_borg_username: "{{ matrix_user_name }}"
  2210. backup_borg_uid: "{{ matrix_user_uid }}"
  2211. backup_borg_gid: "{{ matrix_user_gid }}"
  2212. backup_borg_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else backup_borg_docker_image_registry_prefix_upstream_default }}"
  2213. backup_borg_container_network: "{{ postgres_container_network if postgres_enabled else backup_borg_identifier }}"
  2214. backup_borg_postgresql_version_detection_postgres_role_name: "{{ 'galaxy/postgres' if postgres_enabled else '' }}"
  2215. backup_borg_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}"
  2216. backup_borg_postgresql_enabled: "{{ postgres_enabled }}"
  2217. backup_borg_postgresql_databases_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  2218. backup_borg_postgresql_databases_username: "{{ postgres_connection_username if postgres_enabled else '' }}"
  2219. backup_borg_postgresql_databases_password: "{{ postgres_connection_password if postgres_enabled else '' }}"
  2220. backup_borg_postgresql_databases_port: "{{ postgres_connection_port if postgres_enabled else 5432 }}"
  2221. backup_borg_postgresql_databases_auto: "{{ postgres_managed_databases | map(attribute='name') if postgres_enabled else [] }}"
  2222. backup_borg_location_source_directories:
  2223. - "{{ matrix_base_data_path }}"
  2224. backup_borg_location_exclude_patterns: |
  2225. {{
  2226. ([matrix_synapse_media_store_path + '/remote_content', matrix_synapse_media_store_path + '/local_thumbnails', matrix_synapse_media_store_path + '/remote_thumbnail', matrix_synapse_media_store_path + '/url_cache', matrix_synapse_media_store_path + '/url_cache_thumbnails'] if matrix_homeserver_implementation == 'synapse' else [])
  2227. +
  2228. ([postgres_data_path] if postgres_enabled else [])
  2229. }}
  2230. backup_borg_systemd_required_services_list: |
  2231. {{
  2232. [devture_systemd_docker_base_docker_service_name]
  2233. +
  2234. ([postgres_identifier ~ '.service'] if postgres_enabled else [])
  2235. }}
  2236. ######################################################################
  2237. #
  2238. # /etke/backup_borg
  2239. #
  2240. ######################################################################
  2241. ######################################################################
  2242. #
  2243. # matrix-cactus-comments
  2244. #
  2245. ######################################################################
  2246. matrix_cactus_comments_enabled: false
  2247. matrix_cactus_comments_systemd_required_services_list_auto: |
  2248. {{
  2249. matrix_addons_homeserver_systemd_services_list
  2250. }}
  2251. matrix_cactus_comments_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_cactus_comments_docker_image_registry_prefix_upstream_default }}"
  2252. matrix_cactus_comments_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  2253. matrix_cactus_comments_container_network: "{{ matrix_addons_container_network }}"
  2254. matrix_cactus_comments_container_additional_networks_auto: |-
  2255. {{
  2256. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  2257. }}
  2258. matrix_cactus_comments_as_token: "{{ (matrix_homeserver_generic_secret_key + ':cactus.as.token') | hash('sha512') | to_uuid }}"
  2259. matrix_cactus_comments_hs_token: "{{ (matrix_homeserver_generic_secret_key + ':cactus.hs.token') | hash('sha512') | to_uuid }}"
  2260. matrix_cactus_comments_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  2261. ######################################################################
  2262. #
  2263. # /matrix-cactus-comments
  2264. #
  2265. ######################################################################
  2266. ######################################################################
  2267. #
  2268. # matrix-cactus-comments-client
  2269. #
  2270. ######################################################################
  2271. matrix_cactus_comments_client_enabled: "{{ matrix_cactus_comments_enabled }}"
  2272. matrix_cactus_comments_client_hostname: "{{ matrix_server_fqn_matrix }}"
  2273. matrix_cactus_comments_client_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_cactus_comments_client_container_image_registry_prefix_upstream_default }}"
  2274. matrix_cactus_comments_client_container_network: "{{ matrix_addons_container_network }}"
  2275. matrix_cactus_comments_client_container_additional_networks_auto: |-
  2276. {{
  2277. (
  2278. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_cactus_comments_client_container_labels_traefik_enabled) else [])
  2279. ) | unique
  2280. }}
  2281. matrix_cactus_comments_client_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  2282. matrix_cactus_comments_client_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2283. matrix_cactus_comments_client_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2284. matrix_cactus_comments_client_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2285. ######################################################################
  2286. #
  2287. # /matrix-cactus-comments-client
  2288. #
  2289. ######################################################################
  2290. ######################################################################
  2291. #
  2292. # matrix-corporal
  2293. #
  2294. ######################################################################
  2295. matrix_corporal_enabled: false
  2296. matrix_corporal_systemd_required_services_list_auto: |
  2297. {{
  2298. (['matrix-' + matrix_homeserver_implementation + '.service'])
  2299. }}
  2300. matrix_corporal_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_corporal_docker_image_registry_prefix_upstream_default }}"
  2301. matrix_corporal_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  2302. matrix_corporal_container_http_gateway_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '41080') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2303. matrix_corporal_container_http_api_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '41081') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2304. matrix_corporal_container_network: matrix-corporal
  2305. matrix_corporal_container_additional_networks: |
  2306. {{
  2307. (
  2308. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [])
  2309. +
  2310. ([matrix_homeserver_container_network] if matrix_corporal_container_network != matrix_homeserver_container_network else [])
  2311. ) | unique
  2312. }}
  2313. matrix_corporal_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  2314. matrix_corporal_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2315. matrix_corporal_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2316. matrix_corporal_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2317. matrix_corporal_matrix_homeserver_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  2318. matrix_corporal_matrix_homeserver_api_endpoint: "{{ matrix_homeserver_container_url }}"
  2319. matrix_corporal_matrix_auth_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret }}"
  2320. # This is only useful if there's REST auth provider to make use of it.
  2321. matrix_corporal_http_gateway_internal_rest_auth_enabled: "{{ matrix_synapse_ext_password_provider_rest_auth_enabled }}"
  2322. matrix_corporal_matrix_registration_shared_secret: "{{ matrix_synapse_registration_shared_secret }}"
  2323. ######################################################################
  2324. #
  2325. # /matrix-corporal
  2326. #
  2327. ######################################################################
  2328. ######################################################################
  2329. #
  2330. # matrix-matrixto
  2331. #
  2332. ######################################################################
  2333. # We don't enable matrixto by default.
  2334. matrix_matrixto_enabled: false
  2335. matrix_matrixto_base_path: "{{ matrix_base_data_path }}/matrixto"
  2336. # The container image is not provided at https://github.com/matrix-org/matrix.to
  2337. matrix_matrixto_container_image_self_build: true
  2338. matrix_matrixto_hostname: "{{ matrix_server_fqn_matrixto }}"
  2339. matrix_matrixto_container_network: matrix-matrixto
  2340. matrix_matrixto_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [] }}"
  2341. matrix_matrixto_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '5000') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2342. matrix_matrixto_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  2343. matrix_matrixto_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2344. matrix_matrixto_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2345. matrix_matrixto_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2346. ######################################################################
  2347. #
  2348. # /matrix-matrixto
  2349. #
  2350. ######################################################################
  2351. ######################################################################
  2352. #
  2353. # matrix-rageshake
  2354. #
  2355. ######################################################################
  2356. # We don't enable rageshake by default.
  2357. matrix_rageshake_enabled: false
  2358. matrix_rageshake_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  2359. matrix_rageshake_hostname: "{{ matrix_server_fqn_rageshake }}"
  2360. matrix_rageshake_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_rageshake_container_image_registry_prefix_upstream_default }}"
  2361. matrix_rageshake_container_network: matrix-rageshake
  2362. matrix_rageshake_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [] }}"
  2363. matrix_rageshake_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '9110') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2364. matrix_rageshake_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  2365. matrix_rageshake_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2366. matrix_rageshake_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2367. matrix_rageshake_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2368. ######################################################################
  2369. #
  2370. # /matrix-rageshake
  2371. #
  2372. ######################################################################
  2373. ######################################################################
  2374. #
  2375. # coturn
  2376. #
  2377. ######################################################################
  2378. coturn_enabled: true
  2379. coturn_identifier: matrix-coturn
  2380. coturn_base_path: "{{ matrix_base_data_path }}/coturn"
  2381. coturn_uid: "{{ matrix_user_uid }}"
  2382. coturn_gid: "{{ matrix_user_gid }}"
  2383. coturn_hostname: "{{ matrix_server_fqn_matrix }}"
  2384. coturn_container_image_registry_prefix: "{{ 'localhost/' if coturn_container_image_self_build else coturn_container_image_registry_prefix_upstream }}"
  2385. coturn_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else coturn_container_image_registry_prefix_upstream_default }}"
  2386. coturn_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}"
  2387. # We make the assumption that `ansible_host` points to an external IP address, which may not always be the case.
  2388. # Users are free to set `coturn_turn_external_ip_address` to an empty string
  2389. # to allow auto-detection (via an echoip service) to happen at runtime.
  2390. coturn_turn_external_ip_address: "{{ ansible_host }}"
  2391. # By default, we use the official public instance.
  2392. coturn_turn_external_ip_address_auto_detection_echoip_service_url: https://ifconfig.co/json
  2393. coturn_turn_static_auth_secret: "{{ ((matrix_homeserver_generic_secret_key + ':coturn.sas') | hash('sha512') | to_uuid) if coturn_authentication_method == 'auth-secret' else '' }}"
  2394. coturn_lt_cred_mech_username: "{{ ((matrix_homeserver_generic_secret_key + ':coturn.user') | hash('sha512') | to_uuid) if coturn_authentication_method == 'lt-cred-mech' else '' }}"
  2395. coturn_lt_cred_mech_password: "{{ ((matrix_homeserver_generic_secret_key + ':coturn.pass') | hash('sha512') | to_uuid) if coturn_authentication_method == 'lt-cred-mech' else '' }}"
  2396. coturn_tls_enabled: "{{ matrix_playbook_ssl_enabled }}"
  2397. coturn_tls_cert_path: |-
  2398. {{
  2399. {
  2400. 'playbook-managed-traefik': ('/certificate.crt' if traefik_certs_dumper_enabled else ''),
  2401. 'other-traefik-container': ('/certificate.crt' if traefik_certs_dumper_enabled else ''),
  2402. 'none': '',
  2403. }[matrix_playbook_reverse_proxy_type]
  2404. }}
  2405. coturn_tls_key_path: |-
  2406. {{
  2407. {
  2408. 'playbook-managed-traefik': ('/privatekey.key' if traefik_certs_dumper_enabled else ''),
  2409. 'other-traefik-container': ('/privatekey.key' if traefik_certs_dumper_enabled else ''),
  2410. 'none': '',
  2411. }[matrix_playbook_reverse_proxy_type]
  2412. }}
  2413. coturn_container_additional_volumes: |
  2414. {{
  2415. (
  2416. [
  2417. {
  2418. 'src': (traefik_certs_dumper_dumped_certificates_path + '/' + coturn_hostname + '/certificate.crt'),
  2419. 'dst': '/certificate.crt',
  2420. 'options': 'ro',
  2421. },
  2422. {
  2423. 'src': (traefik_certs_dumper_dumped_certificates_path + '/' + coturn_hostname + '/privatekey.key'),
  2424. 'dst': '/privatekey.key',
  2425. 'options': 'ro',
  2426. },
  2427. ] if (matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and traefik_certs_dumper_enabled and coturn_tls_enabled and (coturn_tls_cert_path and coturn_tls_key_path)) else []
  2428. )
  2429. }}
  2430. coturn_systemd_required_services_list_auto: |
  2431. {{
  2432. ([traefik_certs_dumper_identifier + '-wait-for-domain@' + coturn_hostname + '.service'] if matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and traefik_certs_dumper_enabled and coturn_tls_enabled else [])
  2433. }}
  2434. ######################################################################
  2435. #
  2436. # /coturn
  2437. #
  2438. ######################################################################
  2439. ######################################################################
  2440. #
  2441. # matrix-dimension
  2442. #
  2443. ######################################################################
  2444. matrix_dimension_enabled: false
  2445. matrix_dimension_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  2446. matrix_dimension_hostname: "{{ matrix_server_fqn_dimension }}"
  2447. matrix_dimension_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_dimension_docker_image_registry_prefix_upstream_default }}"
  2448. matrix_dimension_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  2449. matrix_dimension_container_network: "{{ matrix_addons_container_network }}"
  2450. # Dimension is connected both to `matrix_addons_homeserver_container_network` and `matrix_homeserver_container_network`,
  2451. # because `matrix_dimension_homeserver_clientServerUrl` and `matrix_dimension_homeserver_federationUrl` are potentially
  2452. # going to different places.
  2453. matrix_dimension_container_additional_networks: |
  2454. {{
  2455. (
  2456. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  2457. +
  2458. ([matrix_homeserver_container_network] if matrix_homeserver_container_network != matrix_dimension_container_network else [])
  2459. +
  2460. ([postgres_container_network] if (postgres_enabled and matrix_dimension_database_hostname == postgres_connection_hostname and postgres_container_network != matrix_dimension_container_network) else [])
  2461. +
  2462. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [])
  2463. ) | unique
  2464. }}
  2465. matrix_dimension_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8184') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2466. matrix_dimension_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  2467. matrix_dimension_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2468. matrix_dimension_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2469. matrix_dimension_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2470. matrix_dimension_homeserver_clientServerUrl: "{{ matrix_addons_homeserver_client_api_url }}"
  2471. matrix_dimension_homeserver_federationUrl: "{{ matrix_homeserver_container_federation_url }}"
  2472. matrix_dimension_homeserver_mediaUrl: "{{ ('https' if matrix_playbook_ssl_enabled else 'http') }}://{{ matrix_server_fqn_matrix }}"
  2473. # Dimension depends both on `matrix_addons_homeserver_systemd_services_list` and on the homeserver service,
  2474. # because `matrix_dimension_homeserver_clientServerUrl` and `matrix_dimension_homeserver_federationUrl` are potentially
  2475. # going to different places.
  2476. matrix_dimension_systemd_required_services_list_auto: |
  2477. {{
  2478. (
  2479. matrix_addons_homeserver_systemd_services_list
  2480. +
  2481. ['matrix-' + matrix_homeserver_implementation + '.service']
  2482. +
  2483. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_dimension_database_hostname == postgres_connection_hostname) else [])
  2484. ) | unique
  2485. }}
  2486. # Postgres is the default, except if not using internal Postgres server
  2487. matrix_dimension_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  2488. matrix_dimension_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  2489. matrix_dimension_database_password: "{{ (matrix_homeserver_generic_secret_key + ':dimension.db') | hash('sha512') | to_uuid }}"
  2490. ######################################################################
  2491. #
  2492. # /matrix-dimension
  2493. #
  2494. ######################################################################
  2495. ######################################################################
  2496. #
  2497. # etherpad
  2498. #
  2499. ######################################################################
  2500. etherpad_enabled: false
  2501. etherpad_identifier: matrix-etherpad
  2502. etherpad_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  2503. etherpad_base_path: "{{ matrix_base_data_path }}/etherpad"
  2504. etherpad_framing_enabled: "{{ matrix_dimension_enabled or jitsi_enabled }}"
  2505. etherpad_hostname: "{{ matrix_server_fqn_etherpad }}"
  2506. etherpad_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else etherpad_container_image_registry_prefix_upstream_default }}"
  2507. etherpad_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  2508. etherpad_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '9001') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2509. etherpad_container_network: "{{ matrix_addons_container_network }}"
  2510. etherpad_container_additional_networks_auto: |
  2511. {{
  2512. (
  2513. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [])
  2514. +
  2515. ([postgres_container_network] if postgres_enabled and postgres_container_network != etherpad_container_network else [])
  2516. ) | unique
  2517. }}
  2518. etherpad_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  2519. etherpad_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2520. etherpad_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2521. etherpad_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2522. etherpad_systemd_required_services_list_auto: |
  2523. {{
  2524. ([postgres_identifier ~ '.service'] if postgres_enabled else [])
  2525. }}
  2526. etherpad_database_postgres_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  2527. etherpad_database_name: matrix_etherpad
  2528. etherpad_database_postgres_username: matrix_etherpad
  2529. etherpad_database_postgres_password: "{{ (matrix_homeserver_generic_secret_key + ':etherpad.db') | hash('sha512') | to_uuid }}"
  2530. ######################################################################
  2531. #
  2532. # /etherpad
  2533. #
  2534. ######################################################################
  2535. ######################################################################
  2536. #
  2537. # ddclient
  2538. #
  2539. ######################################################################
  2540. ddclient_enabled: false
  2541. ddclient_identifier: matrix-dynamic-dns
  2542. ddclient_base_path: "{{ matrix_base_data_path }}/dynamic-dns"
  2543. ddclient_uid: "{{ matrix_user_uid }}"
  2544. ddclient_gid: "{{ matrix_user_gid }}"
  2545. ddclient_container_image_registry_prefix: "{{ 'localhost/' if ddclient_container_image_self_build else ddclient_container_image_registry_prefix_upstream }}"
  2546. ddclient_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else ddclient_docker_image_registry_prefix_upstream_default }}"
  2547. ddclient_web: "https://cloudflare.com/cdn-cgi/trace"
  2548. ddclient_web_skip: "ip="
  2549. ######################################################################
  2550. #
  2551. # /ddclient
  2552. #
  2553. ######################################################################
  2554. ######################################################################
  2555. #
  2556. # jitsi
  2557. #
  2558. ######################################################################
  2559. jitsi_enabled: false
  2560. jitsi_architecture: "{{ matrix_architecture }}"
  2561. jitsi_hostname: "{{ matrix_server_fqn_jitsi }}"
  2562. jitsi_identifier: matrix-jitsi
  2563. jitsi_base_path: "{{ matrix_base_data_path }}/jitsi"
  2564. jitsi_uid: "{{ matrix_user_uid }}"
  2565. jitsi_gid: "{{ matrix_user_gid }}"
  2566. jitsi_user_username: "{{ matrix_user_name }}"
  2567. jitsi_web_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else jitsi_web_container_image_registry_prefix_upstream_default }}"
  2568. jitsi_web_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '13080') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2569. jitsi_web_container_additional_networks_auto: |
  2570. {{
  2571. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [])
  2572. }}
  2573. jitsi_jvb_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else jitsi_jvb_container_image_registry_prefix_upstream_default }}"
  2574. jitsi_jvb_container_colibri_ws_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '13090') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2575. jitsi_jvb_container_additional_networks_auto: |
  2576. {{
  2577. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [])
  2578. }}
  2579. jitsi_prosody_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else jitsi_prosody_container_image_registry_prefix_upstream_default }}"
  2580. jitsi_prosody_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '5280') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2581. jitsi_prosody_container_additional_networks_auto: |
  2582. {{
  2583. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [])
  2584. }}
  2585. jitsi_jicofo_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else jitsi_jicofo_container_image_registry_prefix_upstream_default }}"
  2586. jitsi_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  2587. jitsi_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2588. jitsi_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2589. jitsi_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2590. jitsi_jibri_xmpp_password: "{{ (matrix_homeserver_generic_secret_key + ':jibri') | hash('sha512') | to_uuid }}"
  2591. jitsi_jicofo_auth_password: "{{ (matrix_homeserver_generic_secret_key + ':jicofo') | hash('sha512') | to_uuid }}"
  2592. jitsi_jvb_auth_password: "{{ (matrix_homeserver_generic_secret_key + ':jvb') | hash('sha512') | to_uuid }}"
  2593. jitsi_web_stun_servers: |
  2594. {{
  2595. [
  2596. 'stun:' + matrix_server_fqn_matrix + ':5349',
  2597. 'stun:' + matrix_server_fqn_matrix + ':3478',
  2598. ]
  2599. if coturn_enabled
  2600. else [ 'stun:meet-jit-si-turnrelay.jitsi.net:443']
  2601. }}
  2602. # The Jitsi instance installed by this playbook is meant for embedding into Matrix clients, so framing is allowed.
  2603. jitsi_web_framing_enabled: true
  2604. # Jitsi (Prosody) only seems to support authenticating with coturn using `auth-secret`, not `lt-cred-mech`.
  2605. # See: https://prosody.im/doc/coturn
  2606. jitsi_turn_credentials: "{{ coturn_turn_static_auth_secret if (coturn_enabled and coturn_authentication_method == 'auth-secret') else '' }}"
  2607. jitsi_turn_host: "{{ ('turn.' + matrix_server_fqn_matrix) if coturn_enabled else '' }}"
  2608. jitsi_turns_host: "{{ ('turn.' + matrix_server_fqn_matrix) if coturn_enabled else '' }}"
  2609. jitsi_turn_port: "{{ coturn_container_stun_plain_host_bind_port_tcp.split(':')[-1] if coturn_enabled else '' }}"
  2610. jitsi_turns_port: "{{ coturn_container_stun_tls_host_bind_port_tcp.split(':')[-1] if coturn_enabled else '' }}"
  2611. # If the self-hosted Etherpad instance is available, it will also show up in Jitsi conferences,
  2612. # unless explicitly disabled by setting `jitsi_etherpad_enabled` to false.
  2613. # Falls back to the scalar.vector.im etherpad in case someone sets `jitsi_etherpad_enabled` to true,
  2614. # while also setting `etherpad_enabled` to false.
  2615. jitsi_etherpad_enabled: "{{ etherpad_enabled }}"
  2616. jitsi_etherpad_base: "{{ etherpad_base_url if etherpad_enabled else 'https://scalar.vector.im/etherpad' }}"
  2617. # Allow verification using JWT and matrix-UVS
  2618. jitsi_prosody_auth_matrix_uvs_sync_power_levels: "{{ matrix_user_verification_service_enabled }}"
  2619. jitsi_prosody_auth_matrix_uvs_auth_token: "{{ matrix_user_verification_service_uvs_auth_token }}"
  2620. jitsi_prosody_auth_matrix_uvs_location: "{{ matrix_user_verification_service_container_url }}"
  2621. jitsi_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}"
  2622. # Gravatar is enabled by default upstream, but there's no need to leak data there needlessly
  2623. # when embedding Jitsi in Matrix rooms.
  2624. jitsi_disable_gravatar: true
  2625. ######################################################################
  2626. #
  2627. # /jitsi
  2628. #
  2629. ######################################################################
  2630. ######################################################################
  2631. #
  2632. # matrix-ldap-registration-proxy
  2633. #
  2634. ######################################################################
  2635. # This is only for users with a specific LDAP setup
  2636. matrix_ldap_registration_proxy_enabled: false
  2637. matrix_ldap_registration_proxy_hostname: "{{ matrix_server_fqn_matrix }}"
  2638. matrix_ldap_registration_proxy_matrix_server_url: "{{ matrix_addons_homeserver_client_api_url }}"
  2639. matrix_ldap_registration_proxy_systemd_required_services_list_auto: |
  2640. {{
  2641. matrix_addons_homeserver_systemd_services_list
  2642. }}
  2643. matrix_ldap_registration_proxy_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_ldap_registration_proxy_docker_image_registry_prefix_upstream_default }}"
  2644. matrix_ldap_registration_proxy_container_network: "{{ matrix_addons_container_network }}"
  2645. matrix_ldap_registration_proxy_container_additional_networks_auto: |-
  2646. {{
  2647. (
  2648. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  2649. +
  2650. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_ldap_registration_proxy_container_labels_traefik_enabled) else [])
  2651. ) | unique
  2652. }}
  2653. matrix_ldap_registration_proxy_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  2654. matrix_ldap_registration_proxy_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2655. matrix_ldap_registration_proxy_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2656. matrix_ldap_registration_proxy_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2657. ######################################################################
  2658. #
  2659. # /matrix-ldap-registration-proxy
  2660. #
  2661. ######################################################################
  2662. ########################################################################
  2663. # #
  2664. # exim-relay #
  2665. # #
  2666. ########################################################################
  2667. # We set up an Exim email relay by default.
  2668. # This is so that the homeserver and various other services can send emails through it.
  2669. # To completely disable this service, use: `exim_relay_enabled: false`
  2670. exim_relay_identifier: "matrix-exim-relay"
  2671. exim_relay_base_path: "{{ matrix_base_data_path }}/exim-relay"
  2672. exim_relay_uid: "{{ matrix_user_uid }}"
  2673. exim_relay_gid: "{{ matrix_user_gid }}"
  2674. exim_relay_hostname: "{{ matrix_server_fqn_matrix }}"
  2675. exim_relay_sender_address: "matrix@{{ exim_relay_hostname }}"
  2676. exim_relay_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else exim_relay_container_image_registry_prefix_upstream_default }}"
  2677. exim_relay_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}"
  2678. ########################################################################
  2679. # #
  2680. # /exim-relay #
  2681. # #
  2682. ########################################################################
  2683. ######################################################################
  2684. #
  2685. # matrix-media-repo
  2686. #
  2687. ######################################################################
  2688. matrix_media_repo_enabled: false
  2689. matrix_media_repo_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_media_repo_docker_image_registry_prefix_upstream_default }}"
  2690. matrix_media_repo_container_network: "{{ matrix_homeserver_container_network }}"
  2691. matrix_media_repo_container_additional_networks: |
  2692. {{
  2693. (
  2694. ([matrix_homeserver_container_network] if (matrix_media_repo_container_network != matrix_homeserver_container_network) else [])
  2695. +
  2696. ([postgres_container_network] if (postgres_enabled and matrix_media_repo_database_hostname == postgres_connection_hostname and postgres_container_network != matrix_media_repo_container_network) else [])
  2697. +
  2698. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_media_repo_container_labels_traefik_enabled) else [])
  2699. +
  2700. ([valkey_container_network] if valkey_enabled and matrix_media_repo_redis_enabled else [])
  2701. ) | unique
  2702. }}
  2703. matrix_media_repo_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  2704. matrix_media_repo_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2705. matrix_media_repo_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  2706. matrix_media_repo_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  2707. matrix_media_repo_container_labels_traefik_internal_media_enabled: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled }}"
  2708. matrix_media_repo_container_labels_traefik_internal_media_entrypoints: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name }}"
  2709. matrix_media_repo_container_labels_traefik_internal_matrix_client_media_enabled: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled }}"
  2710. matrix_media_repo_container_labels_traefik_internal_matrix_client_media_entrypoints: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name }}"
  2711. matrix_media_repo_metrics_proxying_enabled: "{{ matrix_media_repo_metrics_enabled and matrix_metrics_exposure_enabled }}"
  2712. matrix_media_repo_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  2713. matrix_media_repo_metrics_proxying_path: "{{ matrix_metrics_exposure_path_prefix }}/matrix-media-repo"
  2714. matrix_media_repo_container_labels_traefik_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  2715. matrix_media_repo_container_labels_traefik_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  2716. matrix_media_repo_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  2717. matrix_media_repo_database_username: matrix_media_repo
  2718. matrix_media_repo_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mediarepo.db') | hash('sha512') | to_uuid }}"
  2719. matrix_media_repo_database_name: matrix_media_repo
  2720. matrix_media_repo_systemd_required_services_list_auto: |
  2721. {{
  2722. matrix_addons_homeserver_systemd_services_list
  2723. +
  2724. ([postgres_identifier ~ '.service'] if postgres_enabled and matrix_media_repo_database_hostname == postgres_connection_hostname else [])
  2725. }}
  2726. matrix_media_repo_generate_signing_key: "{{ matrix_homeserver_implementation == 'synapse' or matrix_homeserver_implementation == 'dendrite'}}"
  2727. matrix_media_repo_homeserver_signing_key: "{{ matrix_media_repo_synapse_signing_key if matrix_homeserver_implementation == 'synapse' else (matrix_media_repo_dendrite_signing_key if matrix_homeserver_implementation == 'dendrite' else '') }}"
  2728. matrix_media_repo_synapse_signing_key: "{{ matrix_synapse_config_dir_path }}/{{ matrix_server_fqn_matrix }}.signing.key"
  2729. matrix_media_repo_dendrite_signing_key: "{{ matrix_dendrite_config_dir_path }}/{{ matrix_server_fqn_matrix }}.signing.pem"
  2730. # Auto configured server setup by the playbook
  2731. matrix_media_repo_homeservers_auto:
  2732. - # Keep the dash from this line.
  2733. # This should match the server_name of your homeserver, and the Host header
  2734. # provided to the media repo.
  2735. name: "{{ matrix_domain }}"
  2736. # The base URL to where the homeserver can actually be reached by MMR.
  2737. csApi: "{{ matrix_homeserver_container_url }}"
  2738. # The number of consecutive failures in calling this homeserver before the
  2739. # media repository will start backing off. This defaults to 10 if not given.
  2740. backoffAt: 10
  2741. # The admin API interface supported by the homeserver. MMR uses a subset of the admin API
  2742. # during certain operations, like attempting to purge media from a room or validating server
  2743. # admin status. This should be set to one of "synapse", "dendrite", or "matrix". When set
  2744. # to "matrix", most functionality requiring the admin API will not work.
  2745. adminApiKind: "{{ 'synapse' if matrix_homeserver_implementation == 'synapse' else ('dendrite' if matrix_homeserver_implementation == 'dendrite' else 'matrix') }}"
  2746. # The signing key to use for authorizing outbound federation requests. If not specified,
  2747. # requests will not be authorized. See https://docs.t2bot.io/matrix-media-repo/v1.3.5/installation/signing-key/
  2748. # for details.
  2749. signingKeyPath: "{{ '/config/' + matrix_media_repo_identifier + '.signing.key' if matrix_media_repo_generate_signing_key else '' }}"
  2750. matrix_media_repo_homeserver_federation_enabled: "{{ matrix_homeserver_federation_enabled }}"
  2751. matrix_media_repo_redis_enabled: "{{ valkey_enabled }}"
  2752. # Use next redis index since Synapse is on 0. You can chose between index 0 and 15.
  2753. matrix_media_repo_redis_database_number: 1
  2754. matrix_media_repo_redis_shards: |
  2755. {{
  2756. ([{
  2757. 'name': 'valkey',
  2758. 'addr': (valkey_identifier + ':' + valkey_container_tcp_port | string),
  2759. }])
  2760. if valkey_enabled and matrix_media_repo_redis_enabled
  2761. else []
  2762. }}
  2763. ######################################################################
  2764. #
  2765. # /matrix-media-repo
  2766. #
  2767. ######################################################################
  2768. ########################################################################
  2769. # #
  2770. # postgres #
  2771. # #
  2772. ########################################################################
  2773. # To completely disable installing Postgres, use `postgres_enabled: false`.
  2774. postgres_identifier: matrix-postgres
  2775. postgres_architecture: "{{ matrix_architecture }}"
  2776. postgres_base_path: "{{ matrix_base_data_path }}/postgres"
  2777. postgres_uid: "{{ matrix_user_uid }}"
  2778. postgres_gid: "{{ matrix_user_gid }}"
  2779. postgres_allowed_versions_auto: "{{ backup_borg_supported_postgres_versions | map('int') if backup_borg_enabled | default(false) and backup_borg_postgresql_enabled | default(false) else [] }}"
  2780. postgres_connection_username: matrix
  2781. postgres_db_name: matrix
  2782. postgres_systemd_services_to_stop_for_maintenance_list_auto: "{{ devture_systemd_service_manager_services_list_auto | map(attribute='name') | reject('equalto', (postgres_identifier + '.service')) }}"
  2783. postgres_max_connections: "{{ 500 if matrix_synapse_workers_enabled else 200 }}"
  2784. postgres_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else postgres_container_image_registry_prefix_upstream_default }}"
  2785. postgres_pgloader_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else postgres_pgloader_container_image_registry_prefix_upstream_default }}"
  2786. postgres_managed_databases_auto: |
  2787. {{
  2788. ([{
  2789. 'name': matrix_synapse_database_database,
  2790. 'username': matrix_synapse_database_user,
  2791. 'password': matrix_synapse_database_password,
  2792. }] if (matrix_synapse_enabled and matrix_synapse_database_host == postgres_connection_hostname) else [])
  2793. +
  2794. ([{
  2795. 'name': matrix_dendrite_federation_api_database,
  2796. 'username': matrix_dendrite_database_user,
  2797. 'password': matrix_dendrite_database_password,
  2798. },{
  2799. 'name': matrix_dendrite_key_server_database,
  2800. 'username': matrix_dendrite_database_user,
  2801. 'password': matrix_dendrite_database_password,
  2802. },{
  2803. 'name': matrix_dendrite_media_api_database,
  2804. 'username': matrix_dendrite_database_user,
  2805. 'password': matrix_dendrite_database_password,
  2806. },{
  2807. 'name': matrix_dendrite_room_database,
  2808. 'username': matrix_dendrite_database_user,
  2809. 'password': matrix_dendrite_database_password,
  2810. },{
  2811. 'name': matrix_dendrite_sync_api_database,
  2812. 'username': matrix_dendrite_database_user,
  2813. 'password': matrix_dendrite_database_password,
  2814. },{
  2815. 'name': matrix_dendrite_user_api_database,
  2816. 'username': matrix_dendrite_database_user,
  2817. 'password': matrix_dendrite_database_password,
  2818. },{
  2819. 'name': matrix_dendrite_relay_api_database,
  2820. 'username': matrix_dendrite_database_user,
  2821. 'password': matrix_dendrite_database_password,
  2822. },{
  2823. 'name': matrix_dendrite_push_server_database,
  2824. 'username': matrix_dendrite_database_user,
  2825. 'password': matrix_dendrite_database_password,
  2826. },{
  2827. 'name': matrix_dendrite_mscs_database,
  2828. 'username': matrix_dendrite_database_user,
  2829. 'password': matrix_dendrite_database_password,
  2830. }] if (matrix_dendrite_enabled and matrix_dendrite_database_hostname == postgres_connection_hostname) else [])
  2831. +
  2832. ([{
  2833. 'name': matrix_authentication_service_config_database_database,
  2834. 'username': matrix_authentication_service_config_database_username,
  2835. 'password': matrix_authentication_service_config_database_password,
  2836. }] if (matrix_authentication_service_enabled and matrix_authentication_service_config_database_host == postgres_connection_hostname) else [])
  2837. +
  2838. ([{
  2839. 'name': matrix_bot_matrix_reminder_bot_database_name,
  2840. 'username': matrix_bot_matrix_reminder_bot_database_username,
  2841. 'password': matrix_bot_matrix_reminder_bot_database_password,
  2842. }] if (matrix_bot_matrix_reminder_bot_enabled and matrix_bot_matrix_reminder_bot_database_engine == 'postgres' and matrix_bot_matrix_reminder_bot_database_hostname == postgres_connection_hostname) else [])
  2843. +
  2844. ([{
  2845. 'name': matrix_bot_honoroit_database_name,
  2846. 'username': matrix_bot_honoroit_database_username,
  2847. 'password': matrix_bot_honoroit_database_password,
  2848. }] if (matrix_bot_honoroit_enabled and matrix_bot_honoroit_database_engine == 'postgres' and matrix_bot_honoroit_database_hostname == postgres_connection_hostname) else [])
  2849. +
  2850. ([{
  2851. 'name': matrix_postmoogle_database_name,
  2852. 'username': matrix_postmoogle_database_username,
  2853. 'password': matrix_postmoogle_database_password,
  2854. }] if (matrix_postmoogle_enabled and matrix_postmoogle_database_engine == 'postgres' and matrix_postmoogle_database_hostname == postgres_connection_hostname) else [])
  2855. +
  2856. ([{
  2857. 'name': matrix_bot_maubot_database_name,
  2858. 'username': matrix_bot_maubot_database_username,
  2859. 'password': matrix_bot_maubot_database_password,
  2860. }] if (matrix_bot_maubot_enabled and matrix_bot_maubot_database_engine == 'postgres' and matrix_bot_maubot_database_hostname == postgres_connection_hostname) else [])
  2861. +
  2862. ([{
  2863. 'name': matrix_bot_buscarron_database_name,
  2864. 'username': matrix_bot_buscarron_database_username,
  2865. 'password': matrix_bot_buscarron_database_password,
  2866. }] if (matrix_bot_buscarron_enabled and matrix_bot_buscarron_database_engine == 'postgres' and matrix_bot_buscarron_database_hostname == postgres_connection_hostname) else [])
  2867. +
  2868. ([{
  2869. 'name': matrix_registration_database_name,
  2870. 'username': matrix_registration_database_username,
  2871. 'password': matrix_registration_database_password,
  2872. }] if (matrix_registration_enabled and matrix_registration_database_engine == 'postgres' and matrix_registration_database_hostname == postgres_connection_hostname) else [])
  2873. +
  2874. ([{
  2875. 'name': matrix_appservice_discord_database_name,
  2876. 'username': matrix_appservice_discord_database_username,
  2877. 'password': matrix_appservice_discord_database_password,
  2878. }] if (matrix_appservice_discord_enabled and matrix_appservice_discord_database_engine == 'postgres' and matrix_appservice_discord_database_hostname == postgres_connection_hostname) else [])
  2879. +
  2880. ([{
  2881. 'name': matrix_appservice_draupnir_for_all_database_name,
  2882. 'username': matrix_appservice_draupnir_for_all_database_username,
  2883. 'password': matrix_appservice_draupnir_for_all_database_password,
  2884. }] if (matrix_appservice_draupnir_for_all_enabled and matrix_appservice_draupnir_for_all_database_hostname == postgres_connection_hostname) else [])
  2885. +
  2886. ([{
  2887. 'name': matrix_appservice_slack_database_name,
  2888. 'username': matrix_appservice_slack_database_username,
  2889. 'password': matrix_appservice_slack_database_password,
  2890. }] if (matrix_appservice_slack_enabled and matrix_appservice_slack_database_engine == 'postgres' and matrix_appservice_slack_database_hostname == postgres_connection_hostname) else [])
  2891. +
  2892. ([{
  2893. 'name': matrix_appservice_irc_database_name,
  2894. 'username': matrix_appservice_irc_database_username,
  2895. 'password': matrix_appservice_irc_database_password,
  2896. }] if (matrix_appservice_irc_enabled and matrix_appservice_irc_database_engine == 'postgres' and matrix_appservice_irc_database_hostname == postgres_connection_hostname) else [])
  2897. +
  2898. ([{
  2899. 'name': matrix_appservice_kakaotalk_database_name,
  2900. 'username': matrix_appservice_kakaotalk_database_username,
  2901. 'password': matrix_appservice_kakaotalk_database_password,
  2902. }] if (matrix_appservice_kakaotalk_enabled and matrix_appservice_kakaotalk_database_engine == 'postgres' and matrix_appservice_kakaotalk_database_hostname == postgres_connection_hostname) else [])
  2903. +
  2904. ([{
  2905. 'name': matrix_beeper_linkedin_database_name,
  2906. 'username': matrix_beeper_linkedin_database_username,
  2907. 'password': matrix_beeper_linkedin_database_password,
  2908. }] if (matrix_beeper_linkedin_enabled and matrix_beeper_linkedin_database_engine == 'postgres' and matrix_beeper_linkedin_database_hostname == postgres_connection_hostname) else [])
  2909. +
  2910. ([{
  2911. 'name': matrix_wechat_database_name,
  2912. 'username': matrix_wechat_database_username,
  2913. 'password': matrix_wechat_database_password,
  2914. }] if (matrix_wechat_enabled and matrix_wechat_database_engine == 'postgres' and matrix_wechat_database_hostname == postgres_connection_hostname) else [])
  2915. +
  2916. ([{
  2917. 'name': matrix_mautrix_bluesky_database_name,
  2918. 'username': matrix_mautrix_bluesky_database_username,
  2919. 'password': matrix_mautrix_bluesky_database_password,
  2920. }] if (matrix_mautrix_bluesky_enabled and matrix_mautrix_bluesky_database_engine == 'postgres' and matrix_mautrix_bluesky_database_hostname == postgres_connection_hostname) else [])
  2921. +
  2922. ([{
  2923. 'name': matrix_mautrix_googlechat_database_name,
  2924. 'username': matrix_mautrix_googlechat_database_username,
  2925. 'password': matrix_mautrix_googlechat_database_password,
  2926. }] if (matrix_mautrix_googlechat_enabled and matrix_mautrix_googlechat_database_engine == 'postgres' and matrix_mautrix_googlechat_database_hostname == postgres_connection_hostname) else [])
  2927. +
  2928. ([{
  2929. 'name': matrix_mautrix_signal_database_name,
  2930. 'username': matrix_mautrix_signal_database_username,
  2931. 'password': matrix_mautrix_signal_database_password,
  2932. }] if (matrix_mautrix_signal_enabled and matrix_mautrix_signal_database_engine == 'postgres' and matrix_mautrix_signal_database_hostname == postgres_connection_hostname) else [])
  2933. +
  2934. ([{
  2935. 'name': matrix_mautrix_meta_messenger_database_name,
  2936. 'username': matrix_mautrix_meta_messenger_database_username,
  2937. 'password': matrix_mautrix_meta_messenger_database_password,
  2938. }] if (matrix_mautrix_meta_messenger_enabled and matrix_mautrix_meta_messenger_database_engine == 'postgres' and matrix_mautrix_meta_messenger_database_hostname == postgres_connection_hostname) else [])
  2939. +
  2940. ([{
  2941. 'name': matrix_mautrix_meta_instagram_database_name,
  2942. 'username': matrix_mautrix_meta_instagram_database_username,
  2943. 'password': matrix_mautrix_meta_instagram_database_password,
  2944. }] if (matrix_mautrix_meta_instagram_enabled and matrix_mautrix_meta_instagram_database_engine == 'postgres' and matrix_mautrix_meta_instagram_database_hostname == postgres_connection_hostname) else [])
  2945. +
  2946. ([{
  2947. 'name': matrix_mautrix_wsproxy_syncproxy_database_name,
  2948. 'username': matrix_mautrix_wsproxy_syncproxy_database_username,
  2949. 'password': matrix_mautrix_wsproxy_syncproxy_database_password,
  2950. }] if (matrix_mautrix_wsproxy_enabled and matrix_mautrix_wsproxy_syncproxy_database_engine == 'postgres' and matrix_mautrix_wsproxy_syncproxy_database_hostname == 'matrix-postgres') else [])
  2951. +
  2952. ([{
  2953. 'name': matrix_mautrix_telegram_database_name,
  2954. 'username': matrix_mautrix_telegram_database_username,
  2955. 'password': matrix_mautrix_telegram_database_password,
  2956. }] if (matrix_mautrix_telegram_enabled and matrix_mautrix_telegram_database_engine == 'postgres' and matrix_mautrix_telegram_database_hostname == postgres_connection_hostname) else [])
  2957. +
  2958. ([{
  2959. 'name': matrix_mautrix_twitter_database_name,
  2960. 'username': matrix_mautrix_twitter_database_username,
  2961. 'password': matrix_mautrix_twitter_database_password,
  2962. }] if (matrix_mautrix_twitter_enabled and matrix_mautrix_twitter_database_engine == 'postgres' and matrix_mautrix_twitter_database_hostname == postgres_connection_hostname) else [])
  2963. +
  2964. ([{
  2965. 'name': matrix_mautrix_gmessages_database_name,
  2966. 'username': matrix_mautrix_gmessages_database_username,
  2967. 'password': matrix_mautrix_gmessages_database_password,
  2968. }] if (matrix_mautrix_gmessages_enabled and matrix_mautrix_gmessages_database_engine == 'postgres' and matrix_mautrix_gmessages_database_hostname == postgres_connection_hostname) else [])
  2969. +
  2970. ([{
  2971. 'name': matrix_mautrix_whatsapp_database_name,
  2972. 'username': matrix_mautrix_whatsapp_database_username,
  2973. 'password': matrix_mautrix_whatsapp_database_password,
  2974. }] if (matrix_mautrix_whatsapp_enabled and matrix_mautrix_whatsapp_database_engine == 'postgres' and matrix_mautrix_whatsapp_database_hostname == postgres_connection_hostname) else [])
  2975. +
  2976. ([{
  2977. 'name': matrix_mautrix_discord_database_name,
  2978. 'username': matrix_mautrix_discord_database_username,
  2979. 'password': matrix_mautrix_discord_database_password,
  2980. }] if (matrix_mautrix_discord_enabled and matrix_mautrix_discord_database_engine == 'postgres' and matrix_mautrix_discord_database_hostname == postgres_connection_hostname) else [])
  2981. +
  2982. ([{
  2983. 'name': matrix_mautrix_slack_database_name,
  2984. 'username': matrix_mautrix_slack_database_username,
  2985. 'password': matrix_mautrix_slack_database_password,
  2986. }] if (matrix_mautrix_slack_enabled and matrix_mautrix_slack_database_engine == 'postgres' and matrix_mautrix_slack_database_hostname == postgres_connection_hostname) else [])
  2987. +
  2988. ([{
  2989. 'name': matrix_mx_puppet_steam_database_name,
  2990. 'username': matrix_mx_puppet_steam_database_username,
  2991. 'password': matrix_mx_puppet_steam_database_password,
  2992. }] if (matrix_mx_puppet_steam_enabled and matrix_mx_puppet_steam_database_engine == 'postgres' and matrix_mx_puppet_steam_database_hostname == postgres_connection_hostname) else [])
  2993. +
  2994. ([{
  2995. 'name': matrix_mx_puppet_groupme_database_name,
  2996. 'username': matrix_mx_puppet_groupme_database_username,
  2997. 'password': matrix_mx_puppet_groupme_database_password,
  2998. }] if (matrix_mx_puppet_groupme_enabled and matrix_mx_puppet_groupme_database_engine == 'postgres' and matrix_mx_puppet_groupme_database_hostname == postgres_connection_hostname) else [])
  2999. +
  3000. ([{
  3001. 'name': matrix_steam_bridge_database_name,
  3002. 'username': matrix_steam_bridge_database_username,
  3003. 'password': matrix_steam_bridge_database_password,
  3004. }] if (matrix_steam_bridge_enabled and matrix_steam_bridge_database_engine == 'postgres' and matrix_steam_bridge_database_hostname == postgres_connection_hostname) else [])
  3005. +
  3006. ([{
  3007. 'name': matrix_dimension_database_name,
  3008. 'username': matrix_dimension_database_username,
  3009. 'password': matrix_dimension_database_password,
  3010. }] if (matrix_dimension_enabled and matrix_dimension_database_engine == 'postgres' and matrix_dimension_database_hostname == postgres_connection_hostname) else [])
  3011. +
  3012. ([{
  3013. 'name': etherpad_database_name,
  3014. 'username': etherpad_database_postgres_username,
  3015. 'password': etherpad_database_postgres_password,
  3016. }] if (etherpad_enabled and etherpad_database_type == 'postgres' and etherpad_database_postgres_hostname == postgres_connection_hostname) else [])
  3017. +
  3018. ([{
  3019. 'name': prometheus_postgres_exporter_database_name,
  3020. 'username': prometheus_postgres_exporter_database_username,
  3021. 'password': prometheus_postgres_exporter_database_password,
  3022. }] if (prometheus_postgres_exporter_enabled and prometheus_postgres_exporter_database_hostname == postgres_connection_hostname) else [])
  3023. +
  3024. ([{
  3025. 'name': matrix_media_repo_database_name,
  3026. 'username': matrix_media_repo_database_username,
  3027. 'password': matrix_media_repo_database_password,
  3028. }] if (matrix_media_repo_enabled and matrix_media_repo_database_hostname == postgres_connection_hostname) else [])
  3029. }}
  3030. ########################################################################
  3031. # #
  3032. # /postgres #
  3033. # #
  3034. ########################################################################
  3035. ########################################################################
  3036. # #
  3037. # postgres_backup #
  3038. # #
  3039. ########################################################################
  3040. postgres_backup_enabled: false
  3041. postgres_backup_identifier: matrix-postgres-backup
  3042. postgres_backup_architecture: "{{ matrix_architecture }}"
  3043. postgres_backup_base_path: "{{ matrix_base_data_path }}/postgres-backup"
  3044. postgres_backup_systemd_required_services_list_auto: |
  3045. {{
  3046. ([(postgres_identifier + '.service')] if (postgres_enabled and postgres_backup_connection_hostname == postgres_connection_hostname) else [])
  3047. }}
  3048. postgres_backup_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else postgres_backup_container_image_registry_prefix_upstream_default }}"
  3049. postgres_backup_container_network: "{{ (postgres_container_network if (postgres_enabled and postgres_backup_connection_hostname == postgres_connection_hostname) else postgres_backup_identifier) }}"
  3050. postgres_backup_container_additional_networks_auto: |-
  3051. {{
  3052. ([postgres_container_network] if (postgres_enabled and postgres_backup_connection_hostname == postgres_connection_hostname and postgres_backup_container_network != postgres_container_network) else [])
  3053. }}
  3054. postgres_backup_uid: "{{ matrix_user_uid }}"
  3055. postgres_backup_gid: "{{ matrix_user_gid }}"
  3056. postgres_backup_connection_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  3057. postgres_backup_connection_port: "{{ postgres_connection_port if postgres_enabled else 5432 }}"
  3058. postgres_backup_connection_username: "{{ postgres_connection_username if postgres_enabled else '' }}"
  3059. postgres_backup_connection_password: "{{ postgres_connection_password if postgres_enabled else '' }}"
  3060. postgres_backup_postgres_data_path: "{{ postgres_data_path if postgres_enabled else '' }}"
  3061. postgres_backup_postgres_role_include_name: galaxy/postgres
  3062. postgres_backup_databases_auto: "{{ postgres_managed_databases | map(attribute='name') if postgres_enabled else [] }}"
  3063. ########################################################################
  3064. # #
  3065. # /postgres_backup #
  3066. # #
  3067. ########################################################################
  3068. ######################################################################
  3069. #
  3070. # matrix-sygnal
  3071. #
  3072. ######################################################################
  3073. # Most people don't need their own push-server, because they also need their own app to utilize it from.
  3074. matrix_sygnal_enabled: false
  3075. matrix_sygnal_metrics_prometheus_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  3076. matrix_sygnal_hostname: "{{ matrix_server_fqn_sygnal }}"
  3077. matrix_sygnal_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_sygnal_docker_image_registry_prefix_upstream_default }}"
  3078. matrix_sygnal_container_network: "{{ matrix_homeserver_container_network }}"
  3079. matrix_sygnal_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [] }}"
  3080. matrix_sygnal_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '6000') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3081. matrix_sygnal_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  3082. matrix_sygnal_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3083. matrix_sygnal_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3084. matrix_sygnal_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3085. ######################################################################
  3086. #
  3087. # /matrix-sygnal
  3088. #
  3089. ######################################################################
  3090. ######################################################################
  3091. #
  3092. # ntfy
  3093. #
  3094. ######################################################################
  3095. ntfy_enabled: false
  3096. ntfy_identifier: matrix-ntfy
  3097. ntfy_base_path: "{{ matrix_base_data_path }}/ntfy"
  3098. ntfy_uid: "{{ matrix_user_uid }}"
  3099. ntfy_gid: "{{ matrix_user_gid }}"
  3100. ntfy_hostname: "{{ matrix_server_fqn_ntfy }}"
  3101. ntfy_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else ntfy_container_image_registry_prefix_upstream_default }}"
  3102. ntfy_container_additional_networks_auto: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [] }}"
  3103. ntfy_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '2586') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3104. ntfy_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  3105. ntfy_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3106. ntfy_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3107. ntfy_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3108. ntfy_visitor_request_limit_exempt_hosts_hostnames_auto: |
  3109. {{
  3110. [matrix_server_fqn_matrix]
  3111. }}
  3112. ######################################################################
  3113. #
  3114. # /ntfy
  3115. #
  3116. ######################################################################
  3117. ######################################################################
  3118. #
  3119. # valkey
  3120. #
  3121. ######################################################################
  3122. valkey_enabled: "{{ matrix_synapse_workers_enabled or (matrix_hookshot_enabled and matrix_hookshot_encryption_enabled) }}"
  3123. valkey_identifier: matrix-valkey
  3124. valkey_uid: "{{ matrix_user_uid }}"
  3125. valkey_gid: "{{ matrix_user_gid }}"
  3126. valkey_base_path: "{{ matrix_base_data_path }}/valkey"
  3127. valkey_arch: "{{ matrix_architecture }}"
  3128. valkey_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else valkey_container_image_registry_prefix_upstream_default }}"
  3129. ######################################################################
  3130. #
  3131. # valkey
  3132. #
  3133. ######################################################################
  3134. ######################################################################
  3135. #
  3136. # matrix-client-element
  3137. #
  3138. ######################################################################
  3139. # By default, this playbook installs the Element Web on the `matrix_server_fqn_element` domain.
  3140. # If you wish to connect to your Matrix server by other means, you may wish to disable this.
  3141. matrix_client_element_enabled: true
  3142. matrix_client_element_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  3143. matrix_client_element_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_client_element_docker_image_registry_prefix_upstream_default }}"
  3144. matrix_client_element_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  3145. matrix_client_element_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8765') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3146. matrix_client_element_container_network: "{{ matrix_addons_container_network }}"
  3147. matrix_client_element_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_client_element_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else [] }}"
  3148. matrix_client_element_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  3149. matrix_client_element_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3150. matrix_client_element_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3151. matrix_client_element_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3152. matrix_client_element_container_labels_traefik_compression_middleware_enabled: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled }}"
  3153. matrix_client_element_container_labels_traefik_compression_middleware_name: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_name if matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled else '' }}"
  3154. matrix_client_element_default_hs_url: "{{ matrix_homeserver_url }}"
  3155. matrix_client_element_default_is_url: "{{ matrix_identity_server_url }}"
  3156. # Use Dimension if enabled, otherwise fall back to Scalar
  3157. matrix_client_element_integrations_ui_url: "{{ matrix_dimension_integrations_ui_url if matrix_dimension_enabled else 'https://scalar.vector.im/' }}"
  3158. matrix_client_element_integrations_rest_url: "{{ matrix_dimension_integrations_rest_url if matrix_dimension_enabled else 'https://scalar.vector.im/api' }}"
  3159. matrix_client_element_integrations_widgets_urls: "{{ matrix_dimension_integrations_widgets_urls if matrix_dimension_enabled else ['https://scalar.vector.im/api'] }}"
  3160. matrix_client_element_integrations_jitsi_widget_url: "{{ matrix_dimension_integrations_jitsi_widget_url if matrix_dimension_enabled else 'https://scalar.vector.im/api/widgets/jitsi.html' }}"
  3161. matrix_client_element_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}"
  3162. matrix_client_element_registration_enabled: "{{ matrix_synapse_enable_registration }}"
  3163. matrix_client_element_enable_presence_by_hs_url: |-
  3164. {{
  3165. none
  3166. if matrix_synapse_presence_enabled
  3167. else {matrix_client_element_default_hs_url: false}
  3168. }}
  3169. matrix_client_element_jitsi_preferred_domain: "{{ matrix_server_fqn_jitsi if jitsi_enabled else '' }}"
  3170. matrix_client_element_features_feature_video_rooms: "{{ matrix_rtc_enabled }}"
  3171. matrix_client_element_features_feature_group_calls: "{{ matrix_rtc_enabled }}"
  3172. matrix_client_element_features_feature_element_call_video_rooms: "{{ matrix_rtc_enabled }}"
  3173. matrix_client_element_features_feature_oidc_native_flow: "{{ matrix_authentication_service_enabled }}"
  3174. matrix_client_element_element_call_enabled: "{{ matrix_element_call_enabled }}"
  3175. matrix_client_element_element_call_url: "{{ matrix_element_call_public_url if matrix_element_call_enabled else '' }}"
  3176. ######################################################################
  3177. #
  3178. # /matrix-client-element
  3179. #
  3180. ######################################################################
  3181. ######################################################################
  3182. #
  3183. # matrix-client-hydrogen
  3184. #
  3185. ######################################################################
  3186. matrix_client_hydrogen_enabled: false
  3187. matrix_client_hydrogen_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_client_hydrogen_docker_image_registry_prefix_upstream_default }}"
  3188. matrix_client_hydrogen_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  3189. matrix_client_hydrogen_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8768') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3190. matrix_client_hydrogen_container_network: "{{ matrix_addons_container_network }}"
  3191. matrix_client_hydrogen_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_client_hydrogen_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else [] }}"
  3192. matrix_client_hydrogen_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  3193. matrix_client_hydrogen_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3194. matrix_client_hydrogen_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3195. matrix_client_hydrogen_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3196. matrix_client_hydrogen_container_labels_traefik_compression_middleware_enabled: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled }}"
  3197. matrix_client_hydrogen_container_labels_traefik_compression_middleware_name: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_name if matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled else '' }}"
  3198. matrix_client_hydrogen_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  3199. matrix_client_hydrogen_default_hs_url: "{{ matrix_homeserver_url }}"
  3200. matrix_client_hydrogen_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}"
  3201. ######################################################################
  3202. #
  3203. # /matrix-client-hydrogen
  3204. #
  3205. ######################################################################
  3206. ######################################################################
  3207. #
  3208. # cinny
  3209. #
  3210. ######################################################################
  3211. cinny_enabled: false
  3212. cinny_identifier: matrix-client-cinny
  3213. cinny_uid: "{{ matrix_user_uid }}"
  3214. cinny_gid: "{{ matrix_user_gid }}"
  3215. cinny_container_image_registry_prefix: "{{ 'localhost/' if cinny_container_image_self_build else cinny_container_image_registry_prefix_upstream }}"
  3216. cinny_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else cinny_container_image_registry_prefix_upstream_default }}"
  3217. cinny_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  3218. cinny_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8080') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3219. cinny_container_network: "{{ matrix_addons_container_network }}"
  3220. cinny_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if (cinny_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else [] }}"
  3221. cinny_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  3222. cinny_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3223. cinny_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3224. cinny_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3225. cinny_container_labels_traefik_compression_middleware_enabled: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled }}"
  3226. cinny_container_labels_traefik_compression_middleware_name: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_name if matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled else '' }}"
  3227. cinny_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  3228. cinny_default_hs_url: "{{ matrix_homeserver_url }}"
  3229. cinny_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}"
  3230. cinny_base_path: "{{ matrix_base_data_path }}/client-cinny"
  3231. cinny_hostname: "{{ matrix_server_fqn_cinny }}"
  3232. ######################################################################
  3233. #
  3234. # /cinny
  3235. #
  3236. ######################################################################
  3237. ######################################################################
  3238. #
  3239. # matrix-client-schildichat
  3240. #
  3241. ######################################################################
  3242. matrix_client_schildichat_enabled: false
  3243. matrix_client_schildichat_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  3244. matrix_client_schildichat_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_client_schildichat_docker_image_registry_prefix_upstream_default }}"
  3245. matrix_client_schildichat_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  3246. matrix_client_schildichat_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8765') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3247. matrix_client_schildichat_container_network: "{{ matrix_addons_container_network }}"
  3248. matrix_client_schildichat_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_client_schildichat_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else [] }}"
  3249. matrix_client_schildichat_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  3250. matrix_client_schildichat_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3251. matrix_client_schildichat_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3252. matrix_client_schildichat_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3253. matrix_client_schildichat_default_hs_url: "{{ matrix_homeserver_url }}"
  3254. matrix_client_schildichat_default_is_url: "{{ matrix_identity_server_url }}"
  3255. # Use Dimension if enabled, otherwise fall back to Scalar
  3256. matrix_client_schildichat_integrations_ui_url: "{{ matrix_dimension_integrations_ui_url if matrix_dimension_enabled else 'https://scalar.vector.im/' }}"
  3257. matrix_client_schildichat_integrations_rest_url: "{{ matrix_dimension_integrations_rest_url if matrix_dimension_enabled else 'https://scalar.vector.im/api' }}"
  3258. matrix_client_schildichat_integrations_widgets_urls: "{{ matrix_dimension_integrations_widgets_urls if matrix_dimension_enabled else ['https://scalar.vector.im/api'] }}"
  3259. matrix_client_schildichat_integrations_jitsi_widget_url: "{{ matrix_dimension_integrations_jitsi_widget_url if matrix_dimension_enabled else 'https://scalar.vector.im/api/widgets/jitsi.html' }}"
  3260. matrix_client_schildichat_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}"
  3261. matrix_client_schildichat_registration_enabled: "{{ matrix_synapse_enable_registration }}"
  3262. matrix_client_schildichat_enable_presence_by_hs_url: |-
  3263. {{
  3264. none
  3265. if matrix_synapse_presence_enabled
  3266. else {matrix_client_schildichat_default_hs_url: false}
  3267. }}
  3268. matrix_client_schildichat_jitsi_preferred_domain: "{{ matrix_server_fqn_jitsi if jitsi_enabled else '' }}"
  3269. ######################################################################
  3270. #
  3271. # /matrix-client-schildichat
  3272. #
  3273. ######################################################################
  3274. ######################################################################
  3275. #
  3276. # matrix-client-fluffychat
  3277. #
  3278. ######################################################################
  3279. matrix_client_fluffychat_enabled: false
  3280. matrix_client_fluffychat_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  3281. matrix_client_fluffychat_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_client_fluffychat_docker_image_registry_prefix_upstream_default }}"
  3282. matrix_client_fluffychat_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  3283. matrix_client_fluffychat_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8770') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3284. matrix_client_fluffychat_container_network: "{{ matrix_addons_container_network }}"
  3285. matrix_client_fluffychat_container_additional_networks_auto: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_client_fluffychat_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else [] }}"
  3286. matrix_client_fluffychat_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  3287. matrix_client_fluffychat_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3288. matrix_client_fluffychat_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3289. matrix_client_fluffychat_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3290. matrix_client_fluffychat_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}"
  3291. ######################################################################
  3292. #
  3293. # /matrix-client-fluffychat
  3294. #
  3295. ######################################################################
  3296. ######################################################################
  3297. #
  3298. # matrix-synapse
  3299. #
  3300. ######################################################################
  3301. matrix_synapse_enabled: "{{ matrix_homeserver_implementation == 'synapse' }}"
  3302. matrix_synapse_username: "{{ matrix_user_name }}"
  3303. matrix_synapse_uid: "{{ matrix_user_uid }}"
  3304. matrix_synapse_gid: "{{ matrix_user_gid }}"
  3305. matrix_synapse_federation_enabled: "{{ matrix_homeserver_federation_enabled }}"
  3306. matrix_synapse_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_synapse_docker_image_registry_prefix_upstream_default }}"
  3307. matrix_s3_goofys_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_s3_goofys_docker_image_registry_prefix_upstream_default }}"
  3308. matrix_synapse_rust_synapse_compress_state_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_synapse_rust_synapse_compress_state_docker_image_registry_prefix_upstream_default }}"
  3309. matrix_synapse_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  3310. # For exposing the Matrix Federation API's TLS port (HTTPS) to the internet on all network interfaces.
  3311. matrix_synapse_container_federation_api_tls_host_bind_port: "{{ matrix_federation_public_port if (matrix_synapse_federation_enabled and matrix_synapse_tls_federation_listener_enabled) else '' }}"
  3312. #
  3313. # For exposing the Synapse Metrics API's port (plain HTTP) to the local host.
  3314. matrix_synapse_container_metrics_api_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '9100') if matrix_synapse_metrics_enabled and matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3315. #
  3316. # For exposing the Synapse Manhole port (plain HTTP) to the local host.
  3317. matrix_synapse_container_manhole_api_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '9000') if matrix_synapse_metrics_enabled and matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3318. matrix_synapse_container_network: "{{ matrix_homeserver_container_network }}"
  3319. matrix_synapse_container_additional_networks_auto: |
  3320. {{
  3321. (
  3322. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_synapse_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network else [])
  3323. +
  3324. ([postgres_container_network] if (postgres_enabled and postgres_container_network != matrix_synapse_container_network and matrix_synapse_database_host == postgres_connection_hostname) else [])
  3325. +
  3326. ([valkey_container_network] if matrix_synapse_redis_enabled and matrix_synapse_redis_host == valkey_identifier else [])
  3327. +
  3328. ([exim_relay_container_network] if (exim_relay_enabled and matrix_synapse_email_enabled and matrix_synapse_email_smtp_host == exim_relay_identifier and matrix_synapse_container_network != exim_relay_container_network) else [])
  3329. +
  3330. ([matrix_bot_draupnir_container_network] if (matrix_synapse_ext_synapse_http_antispam_enabled and matrix_synapse_ext_synapse_http_antispam_config_base_url == matrix_bot_draupnir_synapse_http_antispam_config_base_url and matrix_bot_draupnir_container_network != matrix_synapse_container_network) else [])
  3331. ) | unique
  3332. }}
  3333. matrix_synapse_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  3334. matrix_synapse_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3335. matrix_synapse_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3336. matrix_synapse_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3337. matrix_synapse_container_labels_traefik_hostname: "{{ matrix_server_fqn_matrix }}"
  3338. matrix_synapse_container_labels_traefik_compression_middleware_enabled: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled }}"
  3339. matrix_synapse_container_labels_traefik_compression_middleware_name: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_name if matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled else '' }}"
  3340. matrix_synapse_container_labels_matrix_labels_enabled: "{{ not matrix_synapse_workers_enabled }}"
  3341. matrix_synapse_container_labels_public_client_root_redirection_enabled: "{{ matrix_synapse_container_labels_public_client_root_redirection_url != '' }}"
  3342. matrix_synapse_container_labels_public_client_root_redirection_url: "{{ (('https://' if matrix_playbook_ssl_enabled else 'http://') + matrix_server_fqn_element) if matrix_client_element_enabled else '' }}"
  3343. matrix_synapse_container_labels_public_client_synapse_admin_api_enabled: "{{ matrix_synapse_admin_enabled or matrix_element_admin_enabled }}"
  3344. matrix_synapse_container_labels_internal_client_synapse_admin_api_enabled: "{{ (matrix_bot_draupnir_enabled and matrix_bot_draupnir_admin_api_enabled) }}"
  3345. matrix_synapse_container_labels_internal_client_synapse_admin_api_traefik_entrypoints: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name }}"
  3346. matrix_synapse_container_labels_public_federation_api_traefik_hostname: "{{ matrix_server_fqn_matrix_federation }}"
  3347. matrix_synapse_container_labels_public_federation_api_traefik_entrypoints: "{{ matrix_federation_traefik_entrypoint_name }}"
  3348. matrix_synapse_container_labels_public_federation_api_traefik_tls: "{{ matrix_federation_traefik_entrypoint_tls }}"
  3349. matrix_synapse_container_labels_public_federation_api_traefik_tls_certResolver: "{{ matrix_synapse_container_labels_traefik_tls_certResolver }}" # noqa var-naming
  3350. matrix_synapse_container_labels_public_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  3351. matrix_synapse_container_labels_public_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  3352. matrix_synapse_container_labels_internal_client_api_enabled: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled }}"
  3353. matrix_synapse_container_labels_internal_client_api_traefik_entrypoints: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name }}"
  3354. # For exposing the Synapse worker (and metrics) ports to the local host.
  3355. matrix_synapse_workers_container_host_bind_address: "{{ matrix_playbook_service_host_bind_interface_prefix[0:-1] if (matrix_synapse_workers_enabled and matrix_playbook_service_host_bind_interface_prefix) else '' }}"
  3356. matrix_synapse_database_host: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  3357. matrix_synapse_database_password: "{{ (matrix_homeserver_generic_secret_key + ':synapse.db') | hash('sha512') | to_uuid }}"
  3358. matrix_synapse_macaroon_secret_key: "{{ (matrix_homeserver_generic_secret_key + ':synapse.mac') | hash('sha512') | to_uuid }}"
  3359. # We do not enable TLS in Synapse by default, since it's handled by Traefik.
  3360. matrix_synapse_tls_federation_listener_enabled: false
  3361. matrix_synapse_tls_certificate_path: ~
  3362. matrix_synapse_tls_private_key_path: ~
  3363. matrix_synapse_federation_port_openid_resource_required: "{{ not matrix_synapse_federation_enabled and (matrix_dimension_enabled or matrix_user_verification_service_enabled or matrix_livekit_jwt_service_enabled) }}"
  3364. matrix_synapse_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  3365. matrix_synapse_metrics_proxying_enabled: "{{ matrix_synapse_metrics_enabled and matrix_metrics_exposure_enabled }}"
  3366. matrix_synapse_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  3367. matrix_synapse_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/synapse"
  3368. matrix_synapse_email_enabled: "{{ exim_relay_enabled }}"
  3369. matrix_synapse_email_smtp_host: "{{ exim_relay_identifier }}"
  3370. matrix_synapse_email_smtp_port: 8025
  3371. matrix_synapse_email_smtp_require_transport_security: false
  3372. matrix_synapse_email_notif_from: "Matrix <{{ exim_relay_sender_address }}>"
  3373. matrix_synapse_turn_uris: "{{ coturn_turn_uris if coturn_enabled else [] }}"
  3374. matrix_synapse_turn_shared_secret: "{{ coturn_turn_static_auth_secret if (coturn_enabled and coturn_authentication_method == 'auth-secret') else '' }}"
  3375. matrix_synapse_turn_username: "{{ coturn_lt_cred_mech_username if (coturn_enabled and coturn_authentication_method == 'lt-cred-mech') else '' }}"
  3376. matrix_synapse_turn_password: "{{ coturn_lt_cred_mech_password if (coturn_enabled and coturn_authentication_method == 'lt-cred-mech') else '' }}"
  3377. matrix_synapse_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}"
  3378. matrix_synapse_systemd_required_services_list_auto: |
  3379. {{
  3380. ([postgres_identifier ~ '.service'] if (postgres_enabled and postgres_container_network != matrix_synapse_container_network and matrix_synapse_database_host == postgres_connection_hostname) else [])
  3381. +
  3382. ([valkey_identifier ~ '.service'] if matrix_synapse_redis_enabled and matrix_synapse_redis_host == valkey_identifier else [])
  3383. +
  3384. (['matrix-goofys.service'] if matrix_s3_media_store_enabled else [])
  3385. +
  3386. (['matrix-authentication-service.service'] if (matrix_synapse_matrix_authentication_service_enabled and matrix_synapse_matrix_authentication_service_endpoint == matrix_authentication_service_http_base_container_url) else [])
  3387. }}
  3388. matrix_synapse_systemd_wanted_services_list_auto: |
  3389. {{
  3390. ([coturn_identifier ~ '.service'] if coturn_enabled else [])
  3391. +
  3392. ([exim_relay_identifier ~ '.service'] if exim_relay_enabled else [])
  3393. }}
  3394. # Synapse workers (used for parallel load-scaling) need Redis for IPC.
  3395. matrix_synapse_redis_enabled: "{{ valkey_enabled }}"
  3396. matrix_synapse_redis_host: "{{ valkey_identifier if valkey_enabled else '' }}"
  3397. matrix_synapse_redis_password: "{{ valkey_connection_password if valkey_enabled else '' }}"
  3398. matrix_synapse_container_extra_arguments_auto: "{{ matrix_homeserver_container_extra_arguments_auto }}"
  3399. matrix_synapse_app_service_config_files_auto: "{{ matrix_homeserver_app_service_config_files_auto }}"
  3400. # Disable creation of media repository Synapse worker when using media-repo
  3401. matrix_synapse_ext_media_repo_enabled: "{{ matrix_media_repo_enabled }}"
  3402. matrix_synapse_ext_synapse_http_antispam_enabled: "{{ matrix_bot_draupnir_config_web_synapseHTTPAntispam_enabled }}"
  3403. matrix_synapse_ext_synapse_http_antispam_config_base_url: "{{ matrix_bot_draupnir_synapse_http_antispam_config_base_url if matrix_bot_draupnir_config_web_synapseHTTPAntispam_enabled else '' }}"
  3404. matrix_synapse_ext_synapse_http_antispam_config_authorization: "{{ matrix_bot_draupnir_config_web_synapseHTTPAntispam_authorization if matrix_bot_draupnir_config_web_synapseHTTPAntispam_enabled else '' }}"
  3405. matrix_synapse_ext_synapse_http_antispam_config_enabled_callbacks: "{{ matrix_bot_draupnir_synapse_http_antispam_config_enabled_callbacks if matrix_bot_draupnir_config_web_synapseHTTPAntispam_enabled else [] }}"
  3406. matrix_synapse_ext_synapse_http_antispam_config_fail_open: "{{ matrix_bot_draupnir_synapse_http_antispam_config_fail_open if matrix_bot_draupnir_config_web_synapseHTTPAntispam_enabled else {} }}"
  3407. matrix_synapse_ext_synapse_http_antispam_config_async: "{{ matrix_bot_draupnir_synapse_http_antispam_config_async if matrix_bot_draupnir_config_web_synapseHTTPAntispam_enabled else {} }}"
  3408. # Enable Synapse statistics reporting when using synapse-usage-exporter
  3409. matrix_synapse_report_stats: "{{ matrix_synapse_usage_exporter_enabled }}"
  3410. matrix_synapse_report_stats_endpoint: "{{ (('http://' + matrix_synapse_usage_exporter_identifier + ':' + matrix_synapse_usage_exporter_container_port | string + '/report-usage-stats/push') if matrix_synapse_usage_exporter_enabled else '') }}"
  3411. matrix_synapse_experimental_features_msc3266_enabled: "{{ matrix_rtc_enabled }}"
  3412. matrix_synapse_matrix_authentication_service_enabled: "{{ matrix_authentication_service_enabled }}"
  3413. matrix_synapse_matrix_authentication_service_endpoint: "{{ matrix_authentication_service_http_base_container_url if matrix_authentication_service_enabled else '' }}"
  3414. matrix_synapse_matrix_authentication_service_secret: "{{ matrix_authentication_service_config_matrix_secret if matrix_authentication_service_enabled else '' }}"
  3415. matrix_synapse_experimental_features_msc4108_enabled: "{{ matrix_authentication_service_enabled and not matrix_authentication_service_migration_in_progress }}"
  3416. matrix_synapse_experimental_features_msc4140_enabled: "{{ matrix_rtc_enabled }}"
  3417. matrix_synapse_experimental_features_msc4222_enabled: "{{ matrix_rtc_enabled }}"
  3418. # Disable password authentication when delegating authentication to Matrix Authentication Service.
  3419. # Unless this is done, Synapse fails on startup with:
  3420. # > Error in configuration at 'password_config.enabled':
  3421. # > Password auth cannot be enabled when OAuth delegation is enabled
  3422. matrix_synapse_password_config_enabled: "{{ not matrix_synapse_matrix_authentication_service_enabled }}"
  3423. matrix_synapse_register_user_script_matrix_authentication_service_path: "{{ matrix_authentication_service_bin_path }}/register-user"
  3424. ######################################################################
  3425. #
  3426. # /matrix-synapse
  3427. #
  3428. ######################################################################
  3429. ######################################################################
  3430. #
  3431. # matrix-synapse-auto-compressor
  3432. #
  3433. ######################################################################
  3434. # Not enabled by default, for now
  3435. matrix_synapse_auto_compressor_enabled: false
  3436. matrix_synapse_auto_compressor_uid: "{{ matrix_user_uid }}"
  3437. matrix_synapse_auto_compressor_gid: "{{ matrix_user_gid }}"
  3438. matrix_synapse_auto_compressor_postgres_image: "{{ postgres_container_image_to_use }}"
  3439. matrix_synapse_auto_compressor_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_synapse_auto_compressor_container_image_registry_prefix_upstream_default }}"
  3440. matrix_synapse_auto_compressor_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  3441. matrix_synapse_auto_compressor_container_network: "{{ (postgres_container_network if (postgres_enabled and matrix_synapse_auto_compressor_database_hostname == matrix_synapse_database_host and matrix_synapse_database_host == postgres_connection_hostname) else 'matrix-synapse-auto-compressor') }}"
  3442. matrix_synapse_auto_compressor_database_username: "{{ matrix_synapse_database_user if matrix_synapse_enabled else '' }}"
  3443. matrix_synapse_auto_compressor_database_password: "{{ matrix_synapse_database_password if matrix_synapse_enabled else '' }}"
  3444. matrix_synapse_auto_compressor_database_hostname: "{{ matrix_synapse_database_host if matrix_synapse_enabled else '' }}"
  3445. matrix_synapse_auto_compressor_database_port: "{{ matrix_synapse_database_port if matrix_synapse_enabled else '5432' }}"
  3446. matrix_synapse_auto_compressor_database_name: "{{ matrix_synapse_database_database if matrix_synapse_enabled else '' }}"
  3447. matrix_synapse_auto_compressor_systemd_required_services_list_auto: |
  3448. {{
  3449. ([postgres_identifier ~ '.service'] if (matrix_synapse_auto_compressor_container_network == postgres_container_network) else [])
  3450. }}
  3451. ######################################################################
  3452. #
  3453. # /matrix-synapse-auto-compressor
  3454. #
  3455. ######################################################################
  3456. ######################################################################
  3457. #
  3458. # matrix-synapse-reverse-proxy-companion
  3459. #
  3460. ######################################################################
  3461. matrix_synapse_reverse_proxy_companion_enabled: "{{ matrix_synapse_enabled and matrix_synapse_workers_enabled }}"
  3462. matrix_synapse_reverse_proxy_companion_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_synapse_reverse_proxy_companion_container_image_registry_prefix_upstream_default }}"
  3463. matrix_synapse_reverse_proxy_companion_container_network: "{{ matrix_synapse_container_network }}"
  3464. matrix_synapse_reverse_proxy_companion_container_additional_networks_auto: |
  3465. {{
  3466. (
  3467. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_synapse_reverse_proxy_companion_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network else [])
  3468. +
  3469. ([matrix_prometheus_nginxlog_exporter_container_network] if (matrix_prometheus_nginxlog_exporter_enabled and matrix_prometheus_nginxlog_exporter_container_network != matrix_synapse_reverse_proxy_companion_container_network) else [])
  3470. +
  3471. ([] if matrix_homeserver_container_network in ['', matrix_synapse_reverse_proxy_companion_container_network] else [matrix_homeserver_container_network])
  3472. ) | unique
  3473. }}
  3474. matrix_synapse_reverse_proxy_companion_client_api_client_max_body_size_mb: "{{ matrix_synapse_max_upload_size_mb }}"
  3475. matrix_synapse_reverse_proxy_companion_container_client_api_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8008') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3476. matrix_synapse_reverse_proxy_companion_container_federation_api_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8048') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3477. matrix_synapse_reverse_proxy_companion_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  3478. matrix_synapse_reverse_proxy_companion_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3479. matrix_synapse_reverse_proxy_companion_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3480. matrix_synapse_reverse_proxy_companion_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3481. matrix_synapse_reverse_proxy_companion_container_labels_traefik_hostname: "{{ matrix_server_fqn_matrix }}"
  3482. matrix_synapse_reverse_proxy_companion_container_labels_traefik_compression_middleware_enabled: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled }}"
  3483. matrix_synapse_reverse_proxy_companion_container_labels_traefik_compression_middleware_name: "{{ matrix_playbook_reverse_proxy_traefik_middleware_compression_name if matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled else '' }}"
  3484. matrix_synapse_reverse_proxy_companion_container_labels_public_client_synapse_client_api_enabled: "{{ matrix_synapse_container_labels_public_client_synapse_client_api_enabled }}"
  3485. matrix_synapse_reverse_proxy_companion_container_labels_public_client_synapse_admin_api_enabled: "{{ matrix_synapse_container_labels_public_client_synapse_admin_api_enabled }}"
  3486. matrix_synapse_reverse_proxy_companion_container_labels_internal_client_synapse_admin_api_enabled: "{{ matrix_synapse_container_labels_internal_client_synapse_admin_api_enabled }}"
  3487. matrix_synapse_reverse_proxy_companion_container_labels_internal_client_synapse_admin_api_traefik_entrypoints: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name }}"
  3488. matrix_synapse_reverse_proxy_companion_container_labels_public_federation_api_traefik_entrypoints: "{{ matrix_synapse_container_labels_public_federation_api_traefik_entrypoints }}"
  3489. matrix_synapse_reverse_proxy_companion_container_labels_public_federation_api_traefik_tls: "{{ matrix_synapse_container_labels_public_federation_api_traefik_tls }}"
  3490. matrix_synapse_reverse_proxy_companion_container_labels_internal_client_api_enabled: "{{ matrix_synapse_container_labels_internal_client_api_enabled }}"
  3491. matrix_synapse_reverse_proxy_companion_container_labels_internal_client_api_traefik_entrypoints: "{{ matrix_synapse_container_labels_internal_client_api_traefik_entrypoints }}"
  3492. matrix_synapse_reverse_proxy_companion_synapse_workers_enabled: "{{ matrix_synapse_workers_enabled }}"
  3493. matrix_synapse_reverse_proxy_companion_synapse_workers_list: "{{ matrix_synapse_workers_enabled_list }}"
  3494. matrix_synapse_reverse_proxy_companion_synapse_room_worker_client_server_locations: "{{ matrix_synapse_workers_room_worker_client_server_endpoints }}"
  3495. matrix_synapse_reverse_proxy_companion_synapse_room_worker_federation_locations: "{{ matrix_synapse_workers_room_worker_federation_endpoints }}"
  3496. matrix_synapse_reverse_proxy_companion_synapse_sync_worker_client_server_locations: "{{ matrix_synapse_workers_sync_worker_client_server_endpoints }}"
  3497. matrix_synapse_reverse_proxy_companion_synapse_client_reader_client_server_locations: "{{ matrix_synapse_workers_client_reader_client_server_endpoints }}"
  3498. matrix_synapse_reverse_proxy_companion_synapse_federation_reader_federation_locations: "{{ matrix_synapse_workers_federation_reader_federation_endpoints }}"
  3499. matrix_synapse_reverse_proxy_companion_synapse_generic_worker_client_server_locations: "{{ matrix_synapse_workers_generic_worker_client_server_endpoints }}"
  3500. matrix_synapse_reverse_proxy_companion_synapse_generic_worker_federation_locations: "{{ matrix_synapse_workers_generic_worker_federation_endpoints }}"
  3501. matrix_synapse_reverse_proxy_companion_synapse_stream_writer_typing_stream_worker_client_server_locations: "{{ matrix_synapse_workers_stream_writer_typing_stream_worker_client_server_endpoints }}"
  3502. matrix_synapse_reverse_proxy_companion_synapse_stream_writer_to_device_stream_worker_client_server_locations: "{{ matrix_synapse_workers_stream_writer_to_device_stream_worker_client_server_endpoints }}"
  3503. matrix_synapse_reverse_proxy_companion_synapse_stream_writer_account_data_stream_worker_client_server_locations: "{{ matrix_synapse_workers_stream_writer_account_data_stream_worker_client_server_endpoints }}"
  3504. matrix_synapse_reverse_proxy_companion_synapse_stream_writer_receipts_stream_worker_client_server_locations: "{{ matrix_synapse_workers_stream_writer_receipts_stream_worker_client_server_endpoints }}"
  3505. matrix_synapse_reverse_proxy_companion_synapse_stream_writer_presence_stream_worker_client_server_locations: "{{ matrix_synapse_workers_stream_writer_presence_stream_worker_client_server_endpoints }}"
  3506. matrix_synapse_reverse_proxy_companion_synapse_media_repository_locations: "{{matrix_synapse_workers_media_repository_endpoints|default([]) }}"
  3507. matrix_synapse_reverse_proxy_companion_synapse_user_dir_locations: "{{ matrix_synapse_workers_user_dir_worker_client_server_endpoints|default([]) }}"
  3508. matrix_synapse_reverse_proxy_companion_access_log_syslog_integration_enabled: "{{ matrix_prometheus_nginxlog_exporter_enabled }}"
  3509. matrix_synapse_reverse_proxy_companion_access_log_syslog_integration_server_port: "{{ (matrix_prometheus_nginxlog_exporter_identifier | string +':'+ matrix_prometheus_nginxlog_exporter_container_syslog_port | string) | default('') }}"
  3510. ######################################################################
  3511. #
  3512. # /matrix-synapse-reverse-proxy-companion
  3513. #
  3514. ######################################################################
  3515. ######################################################################
  3516. #
  3517. # matrix-synapse-admin
  3518. #
  3519. ######################################################################
  3520. matrix_synapse_admin_enabled: false
  3521. matrix_synapse_admin_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_synapse_admin_docker_image_registry_prefix_upstream_default }}"
  3522. matrix_synapse_admin_container_uid: "{{ matrix_user_uid }}"
  3523. matrix_synapse_admin_container_gid: "{{ matrix_user_gid }}"
  3524. matrix_synapse_admin_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8766') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3525. matrix_synapse_admin_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  3526. matrix_synapse_admin_container_network: "{{ matrix_addons_container_network }}"
  3527. matrix_synapse_admin_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [] }}"
  3528. matrix_synapse_admin_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  3529. matrix_synapse_admin_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3530. matrix_synapse_admin_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3531. matrix_synapse_admin_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3532. matrix_synapse_admin_config_externalAuthProvider: "{{ matrix_authentication_service_enabled | default(false) or matrix_synapse_ext_password_provider_ldap_enabled | default(false) }}"
  3533. matrix_synapse_admin_config_asManagedUsers_auto: |
  3534. {{
  3535. ([
  3536. '^@'+(matrix_alertmanager_receiver_config_matrix_user_id_localpart | default('') | regex_escape) +':'+(matrix_domain | regex_escape)+'$',
  3537. ] if matrix_alertmanager_receiver_enabled else [])
  3538. +
  3539. ([
  3540. '^@'+(matrix_appservice_draupnir_for_all_user_prefix | default('') | regex_escape) +'_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3541. ] if matrix_appservice_draupnir_for_all_enabled else [])
  3542. +
  3543. ([
  3544. '^@'+(matrix_bot_baibot_config_user_mxid_localpart | default('') | regex_escape) +':'+(matrix_domain | regex_escape)+'$',
  3545. ] if matrix_bot_baibot_enabled else [])
  3546. +
  3547. ([
  3548. '^@'+(matrix_bot_buscarron_login | default('') | regex_escape) +':'+(matrix_domain | regex_escape)+'$',
  3549. ] if matrix_bot_buscarron_enabled else [])
  3550. +
  3551. ([
  3552. '^@'+(matrix_bot_draupnir_login | default('') | regex_escape) +':'+(matrix_domain | regex_escape)+'$',
  3553. ] if matrix_bot_draupnir_enabled else [])
  3554. +
  3555. ([
  3556. '^@'+(matrix_bot_honoroit_login | default('') | regex_escape) +':'+(matrix_domain | regex_escape)+'$',
  3557. ] if matrix_bot_honoroit_enabled else [])
  3558. +
  3559. ([
  3560. '^@'+(matrix_bot_matrix_registration_bot_matrix_user_id_localpart | default('') | regex_escape) +':'+(matrix_domain | regex_escape)+'$',
  3561. ] if matrix_bot_matrix_registration_bot_enabled else [])
  3562. +
  3563. ([
  3564. '^@'+(matrix_bot_matrix_reminder_bot_matrix_user_id_localpart | default('') | regex_escape) +':'+(matrix_domain | regex_escape)+'$',
  3565. ] if matrix_bot_matrix_reminder_bot_enabled else [])
  3566. +
  3567. ([
  3568. '^@'+(matrix_bot_maubot_login | default('') | regex_escape) +':'+(matrix_domain | regex_escape)+'$',
  3569. ] if matrix_bot_maubot_enabled else [])
  3570. +
  3571. ([
  3572. '^@'+(matrix_postmoogle_login | default('') | regex_escape) +':'+(matrix_domain | regex_escape)+'$',
  3573. ] if matrix_postmoogle_enabled else [])
  3574. +
  3575. ([
  3576. '^@_discord_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3577. ] if matrix_appservice_discord_enabled else [])
  3578. +
  3579. ([
  3580. '^@'+(matrix_appservice_slack_bot_name | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3581. '^@'+(matrix_appservice_slack_user_prefix | default('') | regex_escape)+'[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3582. ] if matrix_appservice_slack_enabled else [])
  3583. +
  3584. ([
  3585. '^@'+(matrix_beeper_linkedin_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3586. '^@linkedin_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3587. ] if matrix_beeper_linkedin_enabled else [])
  3588. +
  3589. ([
  3590. '^@heisenbridge:'+(matrix_domain | regex_escape)+'$',
  3591. '^@hbirc_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3592. ] if matrix_heisenbridge_enabled else [])
  3593. +
  3594. ([
  3595. '^@hookshot:'+(matrix_domain | regex_escape)+'$',
  3596. '^@_github_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3597. '^@_gitlab_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3598. '^@_jira_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3599. '^@'+(matrix_hookshot_generic_userIdPrefix | default('') | regex_escape)+'[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3600. ] if matrix_hookshot_enabled else [])
  3601. +
  3602. ([
  3603. '^@'+(matrix_mautrix_bluesky_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3604. '^@bluesky_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3605. ] if matrix_mautrix_bluesky_enabled else [])
  3606. +
  3607. ([
  3608. '^@'+(matrix_mautrix_discord_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3609. '^@discord_[0-9]+:'+(matrix_domain | regex_escape)+'$',
  3610. ] if matrix_mautrix_discord_enabled else [])
  3611. +
  3612. ([
  3613. '^@'+(matrix_mautrix_gmessages_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3614. '^@gmessages_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3615. ] if matrix_mautrix_gmessages_enabled else [])
  3616. +
  3617. ([
  3618. '^@'+(matrix_mautrix_googlechat_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3619. '^@googlechat_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3620. ] if matrix_mautrix_googlechat_enabled else [])
  3621. +
  3622. ([
  3623. '^@'+(matrix_mautrix_meta_instagram_appservice_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3624. '^@'+(matrix_mautrix_meta_instagram_bridge_username_prefix | default('') | regex_escape)+'[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3625. ] if matrix_mautrix_meta_instagram_enabled else [])
  3626. +
  3627. ([
  3628. '^@'+(matrix_mautrix_meta_messenger_appservice_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3629. '^@'+(matrix_mautrix_meta_messenger_bridge_username_prefix | default('') | regex_escape)+'[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3630. ] if matrix_mautrix_meta_messenger_enabled else [])
  3631. +
  3632. ([
  3633. '^@'+(matrix_mautrix_signal_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3634. '^@signal_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3635. ] if matrix_mautrix_signal_enabled else [])
  3636. +
  3637. ([
  3638. '^@'+(matrix_mautrix_slack_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3639. '^@slack_[a-zA-Z0-9\-]+:'+(matrix_domain | regex_escape)+'$',
  3640. ] if matrix_mautrix_slack_enabled else [])
  3641. +
  3642. ([
  3643. '^@'+(matrix_mautrix_telegram_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3644. '^@'+(matrix_mautrix_telegram_username_template | regex_escape | replace('{userid}', '.+'))+':'+(matrix_domain | regex_escape)+'$',
  3645. ] if matrix_mautrix_telegram_enabled else [])
  3646. +
  3647. ([
  3648. '^@'+(matrix_mautrix_twitter_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3649. '^@twitter_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3650. ] if matrix_mautrix_twitter_enabled else [])
  3651. +
  3652. ([
  3653. '^@'+(matrix_mautrix_whatsapp_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3654. '^@whatsapp_[0-9]+:'+(matrix_domain | regex_escape)+'$',
  3655. ] if matrix_mautrix_whatsapp_enabled else [])
  3656. +
  3657. ([
  3658. '^@'+(matrix_mautrix_imessage_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3659. '^@imessage_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3660. ] if matrix_mautrix_wsproxy_enabled else [])
  3661. +
  3662. ([
  3663. '^@_groupmepuppet_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3664. ] if matrix_mx_puppet_groupme_enabled else [])
  3665. +
  3666. ([
  3667. '^@_steampuppet_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3668. ] if matrix_mx_puppet_steam_enabled else [])
  3669. +
  3670. ([
  3671. '^@smsbot:'+(matrix_domain | regex_escape)+'$',
  3672. '^@sms_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3673. ] if matrix_sms_bridge_enabled else [])
  3674. +
  3675. ([
  3676. '^@'+(matrix_wechat_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3677. '^@_wechat_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3678. ] if matrix_wechat_enabled else [])
  3679. +
  3680. ([
  3681. '^@'+(matrix_steam_bridge_appservice_bot_username | default('') | regex_escape)+':'+(matrix_domain | regex_escape)+'$',
  3682. '^@steam_[a-zA-Z0-9]+:'+(matrix_domain | regex_escape)+'$',
  3683. ] if matrix_steam_bridge_enabled else [])
  3684. }}
  3685. ######################################################################
  3686. #
  3687. # /matrix-synapse-admin
  3688. #
  3689. ######################################################################
  3690. ######################################################################
  3691. #
  3692. # matrix-synapse-usage-exporter
  3693. #
  3694. ######################################################################
  3695. matrix_synapse_usage_exporter_enabled: false
  3696. matrix_synapse_usage_exporter_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_synapse_usage_exporter_container_image_registry_prefix_upstream_default }}"
  3697. matrix_synapse_usage_exporter_container_network: "{{ matrix_monitoring_container_network }}"
  3698. matrix_synapse_usage_exporter_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [] }}"
  3699. matrix_synapse_usage_exporter_container_labels_traefik_enabled: "{{ matrix_synapse_usage_exporter_proxying_enabled }}"
  3700. matrix_synapse_usage_exporter_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3701. matrix_synapse_usage_exporter_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3702. matrix_synapse_usage_exporter_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3703. ######################################################################
  3704. #
  3705. # /matrix-synapse-usage-exporter
  3706. #
  3707. ######################################################################
  3708. ######################################################################
  3709. #
  3710. # prometheus_node_exporter
  3711. #
  3712. ######################################################################
  3713. prometheus_node_exporter_enabled: false
  3714. prometheus_node_exporter_identifier: matrix-prometheus-node-exporter
  3715. prometheus_node_exporter_base_path: "{{ matrix_base_data_path }}/prometheus-node-exporter"
  3716. prometheus_node_exporter_uid: "{{ matrix_user_uid }}"
  3717. prometheus_node_exporter_gid: "{{ matrix_user_gid }}"
  3718. prometheus_node_exporter_hostname: "{{ matrix_server_fqn_matrix }}"
  3719. prometheus_node_exporter_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else prometheus_node_exporter_container_image_registry_prefix_upstream_default }}"
  3720. prometheus_node_exporter_container_network: "{{ matrix_monitoring_container_network }}"
  3721. prometheus_node_exporter_container_additional_networks_auto: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [] }}"
  3722. prometheus_node_exporter_container_labels_traefik_enabled: "{{ matrix_metrics_exposure_enabled }}"
  3723. prometheus_node_exporter_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3724. prometheus_node_exporter_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3725. prometheus_node_exporter_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3726. prometheus_node_exporter_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  3727. prometheus_node_exporter_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  3728. ######################################################################
  3729. #
  3730. # /prometheus_node_exporter
  3731. #
  3732. ######################################################################
  3733. ######################################################################
  3734. #
  3735. # prometheus_postgres_exporter
  3736. #
  3737. ######################################################################
  3738. prometheus_postgres_exporter_enabled: false
  3739. prometheus_postgres_exporter_identifier: matrix-prometheus-postgres-exporter
  3740. prometheus_postgres_exporter_base_path: "{{ matrix_base_data_path }}/prometheus-postgres-exporter"
  3741. prometheus_postgres_exporter_uid: "{{ matrix_user_uid }}"
  3742. prometheus_postgres_exporter_gid: "{{ matrix_user_gid }}"
  3743. prometheus_postgres_exporter_hostname: "{{ matrix_server_fqn_matrix }}"
  3744. prometheus_postgres_exporter_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else prometheus_postgres_exporter_container_image_registry_prefix_upstream_default }}"
  3745. prometheus_postgres_exporter_container_network: "{{ matrix_monitoring_container_network }}"
  3746. prometheus_postgres_exporter_container_additional_networks: |
  3747. {{
  3748. ([postgres_container_network] if (postgres_enabled and prometheus_postgres_exporter_database_hostname == postgres_connection_hostname and prometheus_postgres_exporter_container_network != postgres_container_network) else [])
  3749. +
  3750. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and prometheus_postgres_exporter_container_labels_traefik_enabled else [])
  3751. }}
  3752. prometheus_postgres_exporter_container_labels_traefik_enabled: "{{ matrix_metrics_exposure_enabled }}"
  3753. prometheus_postgres_exporter_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3754. prometheus_postgres_exporter_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3755. prometheus_postgres_exporter_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3756. prometheus_postgres_exporter_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  3757. prometheus_postgres_exporter_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  3758. prometheus_postgres_exporter_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  3759. prometheus_postgres_exporter_database_username: matrix_prometheus_postgres_exporter
  3760. prometheus_postgres_exporter_database_password: "{{ (matrix_homeserver_generic_secret_key + ':prometheus.pg.db') | hash('sha512') | to_uuid }}"
  3761. prometheus_postgres_exporter_database_name: matrix_prometheus_postgres_exporter
  3762. prometheus_postgres_exporter_systemd_required_services_list_auto: |
  3763. {{
  3764. ([postgres_identifier ~ '.service'] if (postgres_enabled and prometheus_postgres_exporter_database_hostname == postgres_connection_hostname) else [])
  3765. }}
  3766. ######################################################################
  3767. #
  3768. # /prometheus_postgres_exporter
  3769. #
  3770. ######################################################################
  3771. ######################################################################
  3772. #
  3773. # matrix-prometheus-nginxlog-exporter
  3774. #
  3775. ######################################################################
  3776. matrix_prometheus_nginxlog_exporter_enabled: false
  3777. matrix_prometheus_nginxlog_exporter_identifier: matrix-prometheus-nginxlog-exporter
  3778. matrix_prometheus_nginxlog_exporter_hostname: "{{ matrix_server_fqn_matrix }}"
  3779. matrix_prometheus_nginxlog_exporter_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_prometheus_nginxlog_exporter_docker_image_registry_prefix_upstream_default }}"
  3780. matrix_prometheus_nginxlog_exporter_container_network: "{{ matrix_monitoring_container_network }}"
  3781. matrix_prometheus_nginxlog_exporter_container_additional_networks_auto: |-
  3782. {{
  3783. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_prometheus_nginxlog_exporter_container_labels_traefik_enabled) else [])
  3784. }}
  3785. matrix_prometheus_nginxlog_exporter_container_labels_traefik_enabled: "{{ matrix_metrics_exposure_enabled }}"
  3786. matrix_prometheus_nginxlog_exporter_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3787. matrix_prometheus_nginxlog_exporter_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3788. matrix_prometheus_nginxlog_exporter_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3789. matrix_prometheus_nginxlog_exporter_container_labels_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  3790. matrix_prometheus_nginxlog_exporter_container_labels_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  3791. matrix_prometheus_nginxlog_exporter_config_namespaces_matrix_source_tags_auto: |
  3792. {{
  3793. ([matrix_synapse_reverse_proxy_companion_access_log_syslog_integration_tag] if matrix_synapse_reverse_proxy_companion_access_log_syslog_integration_enabled else [])
  3794. }}
  3795. ######################################################################
  3796. #
  3797. # /matrix-prometheus-nginxlog-exporter
  3798. #
  3799. ######################################################################
  3800. ######################################################################
  3801. #
  3802. # prometheus
  3803. #
  3804. ######################################################################
  3805. prometheus_enabled: false
  3806. prometheus_identifier: matrix-prometheus
  3807. prometheus_base_path: "{{ matrix_base_data_path }}/prometheus"
  3808. prometheus_uid: "{{ matrix_user_uid }}"
  3809. prometheus_gid: "{{ matrix_user_gid }}"
  3810. prometheus_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else prometheus_container_image_registry_prefix_upstream_default }}"
  3811. prometheus_container_network: "{{ matrix_monitoring_container_network }}"
  3812. prometheus_container_additional_networks_auto: |
  3813. {{
  3814. (
  3815. ([prometheus_node_exporter_container_network] if prometheus_self_node_scraper_enabled and prometheus_node_exporter_container_network != prometheus_container_network else [])
  3816. +
  3817. ([matrix_synapse_container_network] if matrix_prometheus_services_connect_scraper_synapse_enabled and matrix_synapse_container_network != prometheus_container_network else [])
  3818. +
  3819. ([prometheus_postgres_exporter_container_network] if matrix_prometheus_services_connect_scraper_postgres_enabled and prometheus_postgres_exporter_container_network != prometheus_container_network else [])
  3820. +
  3821. ([matrix_hookshot_container_network] if matrix_prometheus_services_connect_scraper_hookshot_enabled and matrix_hookshot_container_network != prometheus_container_network else [])
  3822. +
  3823. ([matrix_prometheus_nginxlog_exporter_container_network] if matrix_prometheus_services_connect_scraper_nginxlog_enabled and matrix_prometheus_nginxlog_exporter_container_network != prometheus_container_network else [])
  3824. +
  3825. ([matrix_media_repo_container_network] if matrix_prometheus_services_connect_scraper_media_repo_enabled and matrix_media_repo_container_network != prometheus_container_network else [])
  3826. +
  3827. ([matrix_synapse_usage_exporter_container_network] if matrix_prometheus_services_connect_scraper_synapse_usage_exporter_enabled and matrix_synapse_usage_exporter_container_network != prometheus_container_network else [])
  3828. ) | unique
  3829. }}
  3830. prometheus_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '9090') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3831. prometheus_config_rule_files_auto: |
  3832. {{
  3833. (['synapse-v2.rules'] if matrix_prometheus_services_connect_synapse_rules_enabled else [])
  3834. }}
  3835. prometheus_self_node_scraper_enabled: "{{ prometheus_node_exporter_enabled }}"
  3836. prometheus_self_node_scraper_static_configs_target: "{{ (prometheus_node_exporter_identifier + ':9100') if prometheus_node_exporter_enabled else '' }}"
  3837. prometheus_config_scrape_configs_auto: |
  3838. {{
  3839. (matrix_prometheus_services_connect_scraper_synapse_configs if matrix_prometheus_services_connect_scraper_synapse_enabled else [])
  3840. +
  3841. (matrix_prometheus_services_connect_scraper_postgres_scrape_configs if matrix_prometheus_services_connect_scraper_postgres_enabled else [])
  3842. +
  3843. (matrix_prometheus_services_connect_scraper_hookshot_scrape_configs if matrix_prometheus_services_connect_scraper_hookshot_enabled else [])
  3844. +
  3845. (matrix_prometheus_services_connect_scraper_nginxlog_scrape_configs if matrix_prometheus_services_connect_scraper_nginxlog_enabled else [])
  3846. +
  3847. (matrix_prometheus_services_connect_scraper_media_repo_scrape_configs if matrix_prometheus_services_connect_scraper_media_repo_enabled else [])
  3848. +
  3849. (matrix_prometheus_services_connect_scraper_synapse_usage_exporter_scrape_configs if matrix_prometheus_services_connect_scraper_synapse_usage_exporter_enabled else [])
  3850. }}
  3851. ######################################################################
  3852. #
  3853. # /prometheus
  3854. #
  3855. ######################################################################
  3856. ######################################################################
  3857. #
  3858. # matrix-prometheus-services-connect
  3859. #
  3860. ######################################################################
  3861. matrix_prometheus_services_connect_synapse_enabled: "{{ prometheus_enabled and matrix_synapse_enabled }}"
  3862. matrix_prometheus_services_connect_synapse_rules_download_synapse_tag: "{{ matrix_synapse_docker_image_tag }}"
  3863. matrix_prometheus_services_connect_synapse_rules_download_dir_path: "{{ prometheus_config_path }}"
  3864. matrix_prometheus_services_connect_synapse_rules_download_owner: "{{ prometheus_uid }}"
  3865. matrix_prometheus_services_connect_synapse_rules_download_group: "{{ prometheus_gid }}"
  3866. matrix_prometheus_services_connect_scraper_synapse_enabled: "{{ matrix_synapse_enabled and matrix_synapse_metrics_enabled }}"
  3867. matrix_prometheus_services_connect_scraper_synapse_main_process_static_configs_target: "matrix-synapse:{{ matrix_synapse_metrics_port }}"
  3868. matrix_prometheus_services_connect_scraper_synapse_workers_enabled_list: "{{ matrix_synapse_workers_enabled_list }}"
  3869. matrix_prometheus_services_connect_scraper_postgres_enabled: "{{ prometheus_postgres_exporter_enabled }}"
  3870. matrix_prometheus_services_connect_scraper_postgres_static_configs_target: "{{ prometheus_postgres_exporter_identifier }}:{{ prometheus_postgres_exporter_container_http_port | string }}"
  3871. matrix_prometheus_services_connect_scraper_hookshot_enabled: "{{ matrix_hookshot_enabled and matrix_hookshot_metrics_enabled }}"
  3872. matrix_prometheus_services_connect_scraper_hookshot_static_configs_target: "{{ matrix_hookshot_container_url }}:{{ matrix_hookshot_metrics_port | string }}"
  3873. matrix_prometheus_services_connect_scraper_nginxlog_enabled: "{{ matrix_prometheus_nginxlog_exporter_enabled }}"
  3874. matrix_prometheus_services_connect_scraper_nginxlog_static_configs_target: "{{ matrix_prometheus_nginxlog_exporter_identifier }}:{{ matrix_prometheus_nginxlog_exporter_container_metrics_port | string }}"
  3875. matrix_prometheus_services_connect_scraper_media_repo_enabled: "{{ matrix_media_repo_enabled and matrix_media_repo_metrics_enabled }}"
  3876. matrix_prometheus_services_connect_scraper_media_repo_static_configs_target: "{{ matrix_media_repo_identifier }}:{{ matrix_media_repo_metrics_port }}"
  3877. matrix_prometheus_services_connect_scraper_synapse_usage_exporter_enabled: "{{ matrix_synapse_usage_exporter_enabled }}"
  3878. matrix_prometheus_services_connect_scraper_synapse_usage_exporter_static_configs_target: "{{ matrix_synapse_usage_exporter_identifier }}:{{ matrix_synapse_usage_exporter_container_port | string }}"
  3879. ######################################################################
  3880. #
  3881. # /matrix-prometheus-services-connect
  3882. #
  3883. ######################################################################
  3884. ######################################################################
  3885. #
  3886. # grafana
  3887. #
  3888. ######################################################################
  3889. grafana_enabled: false
  3890. grafana_identifier: matrix-grafana
  3891. grafana_uid: "{{ matrix_user_uid }}"
  3892. grafana_gid: "{{ matrix_user_gid }}"
  3893. grafana_hostname: "{{ matrix_server_fqn_grafana }}"
  3894. grafana_base_path: "{{ matrix_base_data_path }}/grafana"
  3895. grafana_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else grafana_container_image_registry_prefix_upstream_default }}"
  3896. grafana_container_network: "{{ matrix_monitoring_container_network }}"
  3897. grafana_container_additional_networks_auto: |
  3898. {{
  3899. (
  3900. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and grafana_container_labels_traefik_enabled else [])
  3901. +
  3902. ([prometheus_container_network] if prometheus_enabled and prometheus_container_network != grafana_container_network else [])
  3903. ) | unique
  3904. }}
  3905. grafana_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  3906. grafana_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3907. grafana_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3908. grafana_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3909. grafana_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '3000') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3910. grafana_provisioning_datasources_datasources: |
  3911. {{
  3912. ([{
  3913. 'name': (matrix_server_fqn_matrix + ' - Prometheus'),
  3914. 'type': 'prometheus',
  3915. 'access': 'proxy',
  3916. 'url': ('http://' + prometheus_identifier + ':9090'),
  3917. 'jsonData': {
  3918. 'timeInterval': prometheus_config_global_scrape_interval,
  3919. }
  3920. }] if prometheus_enabled else [])
  3921. }}
  3922. grafana_dashboard_download_urls: |
  3923. {{
  3924. (matrix_synapse_grafana_dashboard_urls if matrix_homeserver_implementation == 'synapse' and matrix_synapse_metrics_enabled else [])
  3925. +
  3926. (prometheus_node_exporter_dashboard_urls if prometheus_node_exporter_enabled else [])
  3927. +
  3928. (prometheus_postgres_exporter_dashboard_urls if prometheus_postgres_exporter_enabled else [])
  3929. +
  3930. (matrix_prometheus_nginxlog_exporter_dashboard_urls if matrix_prometheus_nginxlog_exporter_enabled else [])
  3931. +
  3932. (matrix_media_repo_dashboard_urls if matrix_media_repo_metrics_enabled else [])
  3933. +
  3934. (matrix_synapse_usage_exporter_dashboard_urls if matrix_synapse_usage_exporter_enabled else [])
  3935. }}
  3936. grafana_provisioning_dashboard_template_files: |
  3937. {{
  3938. ([{
  3939. 'path': 'roles/custom/matrix-prometheus-nginxlog-exporter/templates/grafana/nginx-proxy.json',
  3940. 'name': 'nginx-proxy.json',
  3941. }] if matrix_prometheus_nginxlog_exporter_enabled else [])
  3942. }}
  3943. grafana_default_home_dashboard_path: |-
  3944. {{
  3945. {
  3946. 'synapse': ('/etc/grafana/dashboards/synapse.json' if matrix_synapse_metrics_enabled and matrix_synapse_metrics_enabled else ('/etc/grafana/dashboards/node-exporter-full.json' if prometheus_node_exporter_enabled else '')),
  3947. 'dendrite': ('/etc/grafana/dashboards/node-exporter-full.json' if prometheus_node_exporter_enabled else ''),
  3948. 'conduit': ('/etc/grafana/dashboards/node-exporter-full.json' if prometheus_node_exporter_enabled else ''),
  3949. 'continuwuity': ('/etc/grafana/dashboards/node-exporter-full.json' if prometheus_node_exporter_enabled else ''),
  3950. }[matrix_homeserver_implementation]
  3951. }}
  3952. ######################################################################
  3953. #
  3954. # /grafana
  3955. #
  3956. ######################################################################
  3957. ######################################################################
  3958. #
  3959. # matrix-registration
  3960. #
  3961. ######################################################################
  3962. matrix_registration_enabled: false
  3963. matrix_registration_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  3964. matrix_registration_hostname: "{{ matrix_server_fqn_matrix }}"
  3965. matrix_registration_path_prefix: /matrix-registration
  3966. matrix_registration_systemd_required_services_list_auto: |
  3967. {{
  3968. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_registration_database_hostname == postgres_connection_hostname) else [])
  3969. }}
  3970. matrix_registration_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_registration_docker_image_registry_prefix_upstream_default }}"
  3971. matrix_registration_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  3972. matrix_registration_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '8767') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  3973. matrix_registration_container_network: "{{ matrix_addons_container_network }}"
  3974. matrix_registration_container_additional_networks_auto: |-
  3975. {{
  3976. (
  3977. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  3978. +
  3979. ([postgres_container_network] if (postgres_enabled and matrix_registration_database_hostname == postgres_connection_hostname and matrix_registration_container_network != postgres_container_network) else [])
  3980. +
  3981. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_registration_container_labels_traefik_enabled) else [])
  3982. ) | unique
  3983. }}
  3984. matrix_registration_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  3985. matrix_registration_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  3986. matrix_registration_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  3987. matrix_registration_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  3988. matrix_registration_riot_instance: "{{ (('https://' if matrix_playbook_ssl_enabled else 'http://') + matrix_server_fqn_element) if matrix_client_element_enabled else 'https://element.io/app/' }}"
  3989. matrix_registration_shared_secret: |-
  3990. {{
  3991. {
  3992. 'synapse': matrix_synapse_registration_shared_secret | default (''),
  3993. 'dendrite': matrix_dendrite_client_api_registration_shared_secret | default (''),
  3994. 'conduit': '',
  3995. 'continuwuity': '',
  3996. }[matrix_homeserver_implementation]
  3997. }}
  3998. matrix_registration_server_location: "{{ matrix_addons_homeserver_client_api_url }}"
  3999. matrix_registration_api_validate_certs: "{{ matrix_playbook_ssl_enabled }}"
  4000. # Postgres is the default, except if not using internal Postgres server
  4001. matrix_registration_database_engine: "{{ 'postgres' if postgres_enabled else 'sqlite' }}"
  4002. matrix_registration_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  4003. matrix_registration_database_password: "{{ (matrix_homeserver_generic_secret_key + ':mx.registr.db') | hash('sha512') | to_uuid }}"
  4004. ######################################################################
  4005. #
  4006. # /matrix-registration
  4007. #
  4008. ######################################################################
  4009. ######################################################################
  4010. #
  4011. # matrix-dendrite
  4012. #
  4013. ######################################################################
  4014. matrix_dendrite_enabled: "{{ matrix_homeserver_implementation == 'dendrite' }}"
  4015. matrix_dendrite_hostname: "{{ matrix_server_fqn_matrix }}"
  4016. matrix_dendrite_federation_enabled: "{{ matrix_homeserver_federation_enabled }}"
  4017. matrix_dendrite_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_dendrite_docker_image_registry_prefix_upstream_default }}"
  4018. matrix_dendrite_container_network: "{{ matrix_homeserver_container_network }}"
  4019. matrix_dendrite_container_additional_networks_auto: |
  4020. {{
  4021. (
  4022. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_dendrite_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network else [])
  4023. +
  4024. ([postgres_container_network] if (postgres_enabled and matrix_dendrite_database_hostname == postgres_connection_hostname and postgres_container_network != matrix_dendrite_container_network) else [])
  4025. ) | unique
  4026. }}
  4027. matrix_dendrite_container_http_host_bind_address: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ matrix_dendrite_http_bind_port | string) if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  4028. matrix_dendrite_container_https_host_bind_address: "{{ '' if not matrix_dendrite_https_bind_port or not matrix_playbook_service_host_bind_interface_prefix else (matrix_playbook_service_host_bind_interface_prefix + matrix_dendrite_https_bind_port | string) }}"
  4029. matrix_dendrite_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and not matrix_synapse_workers_enabled }}"
  4030. matrix_dendrite_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  4031. matrix_dendrite_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  4032. matrix_dendrite_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  4033. matrix_dendrite_container_labels_public_client_synapse_admin_api_enabled: "{{ matrix_synapse_admin_enabled }}"
  4034. matrix_dendrite_container_labels_public_client_root_redirection_enabled: "{{ matrix_dendrite_container_labels_public_client_root_redirection_url != '' }}"
  4035. matrix_dendrite_container_labels_public_client_root_redirection_url: "{{ (('https://' if matrix_playbook_ssl_enabled else 'http://') + matrix_server_fqn_element) if matrix_client_element_enabled else '' }}"
  4036. matrix_dendrite_container_labels_public_federation_api_traefik_hostname: "{{ matrix_server_fqn_matrix_federation }}"
  4037. matrix_dendrite_container_labels_public_federation_api_traefik_entrypoints: "{{ matrix_federation_traefik_entrypoint_name }}"
  4038. matrix_dendrite_container_labels_public_federation_api_traefik_tls: "{{ matrix_federation_traefik_entrypoint_tls }}"
  4039. matrix_dendrite_container_labels_public_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  4040. matrix_dendrite_container_labels_public_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  4041. matrix_dendrite_metrics_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  4042. matrix_dendrite_metrics_proxying_enabled: "{{ matrix_dendrite_metrics_enabled and matrix_metrics_exposure_enabled }}"
  4043. matrix_dendrite_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  4044. matrix_dendrite_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/dendrite"
  4045. matrix_dendrite_client_api_registration_shared_secret: "{{ (matrix_homeserver_generic_secret_key + ':dendrite.rss') | hash('sha512') | to_uuid }}"
  4046. matrix_dendrite_database_hostname: "{{ postgres_connection_hostname if postgres_enabled else '' }}"
  4047. matrix_dendrite_database_password: "{{ (matrix_homeserver_generic_secret_key + ':dendrite.db') | hash('sha512') | to_uuid }}"
  4048. matrix_dendrite_client_api_turn_uris: "{{ coturn_turn_uris if coturn_enabled else [] }}"
  4049. matrix_dendrite_client_api_turn_shared_secret: "{{ coturn_turn_static_auth_secret if (coturn_enabled and coturn_authentication_method == 'auth-secret') else '' }}"
  4050. matrix_dendrite_client_api_turn_username: "{{ coturn_lt_cred_mech_username if (coturn_enabled and coturn_authentication_method == 'lt-cred-mech') else '' }}"
  4051. matrix_dendrite_client_api_turn_password: "{{ coturn_lt_cred_mech_password if (coturn_enabled and coturn_authentication_method == 'lt-cred-mech') else '' }}"
  4052. matrix_dendrite_disable_tls_validation: "{{ not matrix_playbook_ssl_enabled }}"
  4053. matrix_dendrite_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}"
  4054. matrix_dendrite_trusted_id_servers: "{{ ['matrix.org', 'vector.im'] }}"
  4055. matrix_dendrite_systemd_required_services_list_auto: |
  4056. {{
  4057. ([postgres_identifier ~ '.service'] if (postgres_enabled and matrix_dendrite_database_hostname == postgres_connection_hostname) else [])
  4058. +
  4059. (['matrix-goofys.service'] if matrix_s3_media_store_enabled else [])
  4060. }}
  4061. matrix_dendrite_systemd_wanted_services_list_auto: |
  4062. {{
  4063. ([coturn_identifier ~ '.service'] if coturn_enabled else [])
  4064. }}
  4065. matrix_dendrite_container_extra_arguments_auto: "{{ matrix_homeserver_container_extra_arguments_auto }}"
  4066. matrix_dendrite_app_service_config_files_auto: "{{ matrix_homeserver_app_service_config_files_auto }}"
  4067. ######################################################################
  4068. #
  4069. # /matrix-dendrite
  4070. #
  4071. ######################################################################
  4072. ######################################################################
  4073. #
  4074. # matrix-conduit
  4075. #
  4076. ######################################################################
  4077. matrix_conduit_enabled: "{{ matrix_homeserver_implementation == 'conduit' }}"
  4078. matrix_conduit_hostname: "{{ matrix_server_fqn_matrix }}"
  4079. matrix_conduit_allow_federation: "{{ matrix_homeserver_federation_enabled }}"
  4080. matrix_conduit_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_conduit_docker_image_registry_prefix_upstream_default }}"
  4081. matrix_conduit_container_network: "{{ matrix_homeserver_container_network }}"
  4082. matrix_conduit_container_additional_networks_auto: |
  4083. {{
  4084. (
  4085. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_conduit_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network else [])
  4086. ) | unique
  4087. }}
  4088. matrix_conduit_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and not matrix_synapse_workers_enabled }}"
  4089. matrix_conduit_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  4090. matrix_conduit_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  4091. matrix_conduit_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  4092. matrix_conduit_container_labels_public_client_root_redirection_enabled: "{{ matrix_conduit_container_labels_public_client_root_redirection_url != '' }}"
  4093. matrix_conduit_container_labels_public_client_root_redirection_url: "{{ (('https://' if matrix_playbook_ssl_enabled else 'http://') + matrix_server_fqn_element) if matrix_client_element_enabled else '' }}"
  4094. matrix_conduit_container_labels_public_federation_api_traefik_hostname: "{{ matrix_server_fqn_matrix_federation }}"
  4095. matrix_conduit_container_labels_public_federation_api_traefik_entrypoints: "{{ matrix_federation_traefik_entrypoint_name }}"
  4096. matrix_conduit_container_labels_public_federation_api_traefik_tls: "{{ matrix_federation_traefik_entrypoint_tls }}"
  4097. matrix_conduit_container_labels_internal_client_api_enabled: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled }}"
  4098. matrix_conduit_container_labels_internal_client_api_traefik_entrypoints: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name }}"
  4099. matrix_conduit_turn_uris: "{{ coturn_turn_uris if coturn_enabled else [] }}"
  4100. matrix_conduit_turn_secret: "{{ coturn_turn_static_auth_secret if (coturn_enabled and coturn_authentication_method == 'auth-secret') else '' }}"
  4101. matrix_conduit_turn_username: "{{ coturn_lt_cred_mech_username if (coturn_enabled and coturn_authentication_method == 'lt-cred-mech') else '' }}"
  4102. matrix_conduit_turn_password: "{{ coturn_lt_cred_mech_password if (coturn_enabled and coturn_authentication_method == 'lt-cred-mech') else '' }}"
  4103. ######################################################################
  4104. #
  4105. # /matrix-conduit
  4106. #
  4107. ######################################################################
  4108. ######################################################################
  4109. #
  4110. # matrix-continuwuity
  4111. #
  4112. ######################################################################
  4113. matrix_continuwuity_enabled: "{{ matrix_homeserver_implementation == 'continuwuity' }}"
  4114. matrix_continuwuity_hostname: "{{ matrix_server_fqn_matrix }}"
  4115. matrix_continuwuity_config_allow_federation: "{{ matrix_homeserver_federation_enabled }}"
  4116. matrix_continuwuity_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_continuwuity_docker_image_registry_prefix_upstream_default }}"
  4117. matrix_continuwuity_container_network: "{{ matrix_homeserver_container_network }}"
  4118. matrix_continuwuity_container_additional_networks_auto: |
  4119. {{
  4120. (
  4121. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_continuwuity_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network else [])
  4122. ) | unique
  4123. }}
  4124. matrix_continuwuity_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and not matrix_synapse_workers_enabled }}"
  4125. matrix_continuwuity_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  4126. matrix_continuwuity_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  4127. matrix_continuwuity_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  4128. matrix_continuwuity_container_labels_public_client_root_redirection_enabled: "{{ matrix_continuwuity_container_labels_public_client_root_redirection_url != '' }}"
  4129. matrix_continuwuity_container_labels_public_client_root_redirection_url: "{{ (('https://' if matrix_playbook_ssl_enabled else 'http://') + matrix_server_fqn_element) if matrix_client_element_enabled else '' }}"
  4130. matrix_continuwuity_container_labels_public_federation_api_traefik_hostname: "{{ matrix_server_fqn_matrix_federation }}"
  4131. matrix_continuwuity_container_labels_public_federation_api_traefik_entrypoints: "{{ matrix_federation_traefik_entrypoint_name }}"
  4132. matrix_continuwuity_container_labels_public_federation_api_traefik_tls: "{{ matrix_federation_traefik_entrypoint_tls }}"
  4133. matrix_continuwuity_container_labels_internal_client_api_enabled: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled }}"
  4134. matrix_continuwuity_container_labels_internal_client_api_traefik_entrypoints: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name }}"
  4135. matrix_continuwuity_config_turn_uris: "{{ coturn_turn_uris if coturn_enabled else [] }}"
  4136. matrix_continuwuity_config_turn_secret: "{{ coturn_turn_static_auth_secret if (coturn_enabled and coturn_authentication_method == 'auth-secret') else '' }}"
  4137. matrix_continuwuity_config_turn_username: "{{ coturn_lt_cred_mech_username if (coturn_enabled and coturn_authentication_method == 'lt-cred-mech') else '' }}"
  4138. matrix_continuwuity_config_turn_password: "{{ coturn_lt_cred_mech_password if (coturn_enabled and coturn_authentication_method == 'lt-cred-mech') else '' }}"
  4139. matrix_continuwuity_self_check_validate_certificates: "{{ matrix_playbook_ssl_enabled }}"
  4140. ######################################################################
  4141. #
  4142. # /matrix-continuwuity
  4143. #
  4144. ######################################################################
  4145. ######################################################################
  4146. #
  4147. # matrix-user-creator
  4148. #
  4149. ######################################################################
  4150. matrix_user_creator_users_auto: |
  4151. {{
  4152. ([{
  4153. 'username': matrix_bot_matrix_registration_bot_matrix_user_id_localpart,
  4154. 'initial_password': matrix_bot_matrix_registration_bot_bot_password,
  4155. 'initial_type': 'admin',
  4156. }] if matrix_bot_matrix_registration_bot_enabled else [])
  4157. +
  4158. ([{
  4159. 'username': matrix_bot_baibot_config_user_mxid_localpart,
  4160. 'initial_password': matrix_bot_baibot_config_user_password,
  4161. 'initial_type': 'bot',
  4162. }] if matrix_bot_baibot_enabled else [])
  4163. +
  4164. ([{
  4165. 'username': matrix_bot_matrix_reminder_bot_matrix_user_id_localpart,
  4166. 'initial_password': matrix_bot_matrix_reminder_bot_matrix_user_password,
  4167. 'initial_type': 'bot',
  4168. }] if matrix_bot_matrix_reminder_bot_enabled else [])
  4169. +
  4170. ([{
  4171. 'username': matrix_bot_honoroit_login,
  4172. 'initial_password': matrix_bot_honoroit_password,
  4173. 'initial_type': 'bot',
  4174. }] if matrix_bot_honoroit_enabled else [])
  4175. +
  4176. ([{
  4177. 'username': matrix_postmoogle_login,
  4178. 'initial_password': matrix_postmoogle_password,
  4179. 'initial_type': 'bot',
  4180. }] if matrix_postmoogle_enabled else [])
  4181. +
  4182. ([{
  4183. 'username': matrix_bot_buscarron_login,
  4184. 'initial_password': matrix_bot_buscarron_password,
  4185. 'initial_type': 'bot',
  4186. }] if matrix_bot_buscarron_enabled else [])
  4187. +
  4188. ([{
  4189. 'username': matrix_bot_maubot_login,
  4190. 'initial_password': matrix_bot_maubot_initial_password,
  4191. 'initial_type': 'bot',
  4192. }] if matrix_bot_maubot_enabled else [])
  4193. +
  4194. ([{
  4195. 'username': matrix_bot_draupnir_login,
  4196. 'initial_password': matrix_bot_draupnir_password,
  4197. 'initial_type': ('admin' if matrix_bot_draupnir_admin_api_enabled else 'bot'),
  4198. }] if matrix_bot_draupnir_enabled and matrix_bot_draupnir_password else [])
  4199. }}
  4200. ######################################################################
  4201. #
  4202. # /matrix-user-creator
  4203. #
  4204. ######################################################################
  4205. ######################################################################
  4206. #
  4207. # matrix-user-verification-service
  4208. #
  4209. ######################################################################
  4210. matrix_user_verification_service_enabled: false
  4211. matrix_user_verification_service_systemd_required_services_list: |
  4212. {{
  4213. [devture_systemd_docker_base_docker_service_name]
  4214. +
  4215. (['matrix-' + matrix_homeserver_implementation + '.service'])
  4216. }}
  4217. matrix_user_verification_service_docker_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_user_verification_service_docker_image_registry_prefix_upstream_default }}"
  4218. matrix_user_verification_service_container_network: "{{ matrix_addons_container_network }}"
  4219. matrix_user_verification_service_container_additional_networks: |
  4220. {{
  4221. (
  4222. ([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [])
  4223. +
  4224. ([matrix_homeserver_container_network] if matrix_homeserver_container_network != matrix_user_verification_service_container_network else [])
  4225. ) | unique
  4226. }}
  4227. # If Jitsi is managed by this playbook we can use the docker network — no need to expose a port.
  4228. # If Jitsi is not managed by this playbook, or you otherwise have a need for it, you can expose
  4229. # matrix-user-verfification-services's client-server port to port 3003.
  4230. # By default Matrix-User-Verification-Service binds to port 3000, which collides with grafana, therefore this uses port 3003.
  4231. matrix_user_verification_service_container_http_host_bind_port: "{{ '' if (jitsi_enabled | bool and jitsi_enable_auth | bool and jitsi_auth_type == 'matrix') else matrix_playbook_service_host_bind_interface_prefix ~ '3003' }}"
  4232. # URL exposed in the docker network
  4233. matrix_user_verification_service_container_url: "http://{{ matrix_user_verification_service_container_name }}:3000"
  4234. matrix_user_verification_service_uvs_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
  4235. # We connect via the container network (private IPs), so we need to disable IP checks
  4236. matrix_user_verification_service_uvs_disable_ip_blacklist: "{{ matrix_synapse_enabled }}"
  4237. matrix_user_verification_service_uvs_auth_token: "{{ (matrix_homeserver_generic_secret_key + ':uvs.auth.token') | hash('sha512') | to_uuid }}"
  4238. ######################################################################
  4239. #
  4240. # /matrix-user-verification-service
  4241. #
  4242. ######################################################################
  4243. ########################################################################
  4244. # #
  4245. # matrix-static-files #
  4246. # #
  4247. ########################################################################
  4248. matrix_static_files_enabled: true
  4249. matrix_static_files_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_static_files_container_image_registry_prefix_upstream_default }}"
  4250. matrix_static_files_container_network: "{{ (matrix_static_files_identifier if matrix_playbook_reverse_proxy_type == 'none' else matrix_playbook_reverse_proxy_container_network) }}"
  4251. matrix_static_files_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  4252. matrix_static_files_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  4253. matrix_static_files_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  4254. matrix_static_files_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  4255. matrix_static_files_container_labels_well_known_matrix_endpoint_traefik_hostname: "{{ matrix_server_fqn_matrix }}"
  4256. # Base domain serving is not enabled by default (see `matrix_static_files_container_labels_base_domain_enabled`),
  4257. # but we pass the hostname, so that enabling it is easy.
  4258. matrix_static_files_container_labels_base_domain_traefik_hostname: "{{ matrix_domain }}"
  4259. # If we're not serving a static webpage, serve a redirect instead of a 404.
  4260. matrix_static_files_container_labels_base_domain_root_path_redirection_enabled: "{{ not matrix_static_files_file_index_html_enabled }}"
  4261. matrix_static_files_container_labels_base_domain_root_path_redirection_url: "{{ ('https://' if matrix_playbook_ssl_enabled else 'http://') + matrix_server_fqn_matrix }}/${1}"
  4262. matrix_static_files_file_matrix_client_property_io_element_jitsi_preferred_domain: "{{ matrix_server_fqn_jitsi if jitsi_enabled else '' }}"
  4263. matrix_static_files_file_matrix_client_property_org_matrix_msc2965_authentication_enabled: "{{ matrix_authentication_service_enabled }}"
  4264. matrix_static_files_file_matrix_client_property_org_matrix_msc2965_authentication_issuer: "{{ matrix_authentication_service_config_http_issuer if matrix_authentication_service_enabled else '' }}"
  4265. matrix_static_files_file_matrix_client_property_org_matrix_msc2965_authentication_account: "{{ matrix_authentication_service_account_management_url if matrix_authentication_service_enabled else '' }}"
  4266. matrix_static_files_file_matrix_client_property_m_tile_server_entries_enabled: "{{ matrix_client_element_location_sharing_enabled }}"
  4267. matrix_static_files_file_matrix_client_property_m_tile_server_map_style_url: "{{ ('https://' if matrix_playbook_ssl_enabled else 'http://') + matrix_server_fqn_element }}/map_style.json"
  4268. # We set this regardless of whether synapse-admin is enabled, because people may wish to use a hosted (externally) synapse-admin installation and still have it auto-configured.
  4269. # See: https://github.com/etkecc/synapse-admin/pull/126
  4270. matrix_static_files_file_matrix_client_property_cc_etke_synapse_admin_auto: "{{ matrix_synapse_admin_configuration if matrix_homeserver_implementation == 'synapse' else {} }}"
  4271. matrix_static_files_file_matrix_client_property_org_matrix_msc4143_rtc_foci_enabled: "{{ matrix_livekit_jwt_service_enabled }}"
  4272. matrix_static_files_file_matrix_client_property_org_matrix_msc4143_rtc_foci_auto: |-
  4273. {{
  4274. (
  4275. [{'type': 'livekit', 'livekit_service_url': matrix_livekit_jwt_service_public_url}] if matrix_livekit_jwt_service_enabled else []
  4276. )
  4277. }}
  4278. matrix_static_files_file_matrix_server_property_m_server: "{{ matrix_server_fqn_matrix_federation }}:{{ matrix_federation_public_port }}"
  4279. matrix_static_files_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  4280. matrix_static_files_self_check_hostname_matrix: "{{ matrix_server_fqn_matrix }}"
  4281. matrix_static_files_self_check_hostname_identity: "{{ matrix_domain }}"
  4282. ########################################################################
  4283. # #
  4284. # /matrix-static-files #
  4285. # #
  4286. ########################################################################
  4287. ########################################################################
  4288. # #
  4289. # container-socket-proxy #
  4290. # #
  4291. ########################################################################
  4292. container_socket_proxy_enabled: "{{ matrix_playbook_reverse_proxy_type == 'playbook-managed-traefik' }}"
  4293. container_socket_proxy_identifier: matrix-container-socket-proxy
  4294. container_socket_proxy_base_path: "{{ matrix_base_data_path }}/container-socket-proxy"
  4295. container_socket_proxy_uid: "{{ matrix_user_uid }}"
  4296. container_socket_proxy_gid: "{{ matrix_user_gid }}"
  4297. # Traefik requires read access to the containers APIs to do its job
  4298. container_socket_proxy_api_containers_enabled: true
  4299. container_socket_proxy_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else container_socket_proxy_container_image_registry_prefix_upstream_default }}"
  4300. ########################################################################
  4301. # #
  4302. # /container-socket-proxy #
  4303. # #
  4304. ########################################################################
  4305. ########################################################################
  4306. # #
  4307. # traefik #
  4308. # #
  4309. ########################################################################
  4310. traefik_enabled: "{{ matrix_playbook_reverse_proxy_type == 'playbook-managed-traefik' }}"
  4311. traefik_identifier: matrix-traefik
  4312. traefik_base_path: "{{ matrix_base_data_path }}/traefik"
  4313. traefik_uid: "{{ matrix_user_uid }}"
  4314. traefik_gid: "{{ matrix_user_gid }}"
  4315. # It's common for setups to deal with large file uploads which may take longer than the default readTimeout (60s).
  4316. # This override (for the `web` entrypoint) also cascades to overriding the `web-secure` entrypoint and the `matrix-federation` entrypoint.
  4317. traefik_config_entrypoint_web_transport_respondingTimeouts_readTimeout: 300s
  4318. traefik_additional_entrypoints_auto: |
  4319. {{
  4320. ([matrix_playbook_public_matrix_federation_api_traefik_entrypoint_definition] if matrix_playbook_public_matrix_federation_api_traefik_entrypoint_enabled else [])
  4321. +
  4322. ([matrix_playbook_internal_matrix_client_api_traefik_entrypoint_definition] if matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled else [])
  4323. }}
  4324. traefik_config_providers_docker_endpoint: "{{ container_socket_proxy_endpoint if container_socket_proxy_enabled else 'unix:///var/run/docker.sock' }}"
  4325. traefik_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else traefik_container_image_registry_prefix_upstream_default }}"
  4326. traefik_container_additional_networks_auto: |
  4327. {{
  4328. ([container_socket_proxy_container_network] if container_socket_proxy_enabled else [])
  4329. }}
  4330. traefik_systemd_required_services_list: |
  4331. {{
  4332. ([devture_systemd_docker_base_docker_service_name])
  4333. +
  4334. ([container_socket_proxy_identifier + '.service'] if container_socket_proxy_enabled else [])
  4335. }}
  4336. traefik_additional_domains_to_obtain_certificates_for_auto: |
  4337. {{
  4338. ([coturn_hostname] if (coturn_enabled and coturn_tls_enabled and coturn_hostname != matrix_server_fqn_matrix) else [])
  4339. }}
  4340. ########################################################################
  4341. # #
  4342. # /traefik #
  4343. # #
  4344. ########################################################################
  4345. ########################################################################
  4346. # #
  4347. # traefik_certs_dumper #
  4348. # #
  4349. ########################################################################
  4350. traefik_certs_dumper_enabled: "{{ (matrix_playbook_reverse_proxy_type == 'playbook-managed-traefik' and traefik_config_entrypoint_web_secure_enabled and traefik_config_certificatesResolvers_acme_enabled) or matrix_playbook_reverse_proxy_type == 'other-traefik-container' }}"
  4351. traefik_certs_dumper_identifier: matrix-traefik-certs-dumper
  4352. traefik_certs_dumper_base_path: "{{ matrix_base_data_path }}/traefik-certs-dumper"
  4353. traefik_certs_dumper_uid: "{{ matrix_user_uid }}"
  4354. traefik_certs_dumper_gid: "{{ matrix_user_gid }}"
  4355. traefik_certs_dumper_ssl_path: "{{ traefik_ssl_dir_path if traefik_enabled else '' }}"
  4356. traefik_certs_dumper_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else traefik_certs_dumper_container_image_registry_prefix_upstream_default }}"
  4357. ########################################################################
  4358. # #
  4359. # /traefik_certs_dumper #
  4360. # #
  4361. ########################################################################
  4362. ########################################################################
  4363. # #
  4364. # matrix-element-admin #
  4365. # #
  4366. ########################################################################
  4367. # We don't enable this by default.
  4368. matrix_element_admin_enabled: false
  4369. matrix_element_admin_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  4370. matrix_element_admin_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_element_admin_container_image_registry_prefix_upstream_default }}"
  4371. matrix_element_admin_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  4372. matrix_element_admin_container_network: "{{ matrix_addons_container_network }}"
  4373. matrix_element_admin_container_additional_networks_auto: |-
  4374. {{
  4375. (
  4376. ([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
  4377. +
  4378. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_playbook_reverse_proxyable_services_additional_network and matrix_element_admin_container_labels_traefik_enabled) else [])
  4379. ) | unique
  4380. }}
  4381. matrix_element_admin_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  4382. matrix_element_admin_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  4383. matrix_element_admin_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  4384. matrix_element_admin_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  4385. matrix_element_admin_systemd_required_services_list_auto: "{{ matrix_addons_homeserver_systemd_services_list }}"
  4386. ######################################################################
  4387. # #
  4388. # /matrix-element-admin #
  4389. # #
  4390. ######################################################################
  4391. ########################################################################
  4392. # #
  4393. # matrix-element-call #
  4394. # #
  4395. ########################################################################
  4396. matrix_element_call_enabled: false
  4397. matrix_element_call_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  4398. matrix_element_call_container_network: "{{ matrix_addons_container_network }}"
  4399. matrix_element_call_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_element_call_container_image_registry_prefix_upstream_default }}"
  4400. matrix_element_call_container_additional_networks_auto: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_element_call_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else [] }}"
  4401. matrix_element_call_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  4402. matrix_element_call_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  4403. matrix_element_call_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  4404. matrix_element_call_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  4405. matrix_element_call_config_livekit_livekit_service_url: "{{ matrix_livekit_jwt_service_public_url if matrix_livekit_jwt_service_enabled else '' }}"
  4406. ########################################################################
  4407. # #
  4408. # /matrix-element-call #
  4409. # #
  4410. ########################################################################
  4411. ########################################################################
  4412. # #
  4413. # livekit-server #
  4414. # #
  4415. ########################################################################
  4416. livekit_server_enabled: "{{ matrix_rtc_enabled }}"
  4417. livekit_server_identifier: matrix-livekit-server
  4418. livekit_server_uid: "{{ matrix_user_uid }}"
  4419. livekit_server_gid: "{{ matrix_user_gid }}"
  4420. livekit_server_base_path: "{{ matrix_base_data_path }}/livekit-server"
  4421. livekit_server_hostname: "{{ matrix_server_fqn_matrix }}"
  4422. livekit_server_path_prefix: "/livekit-server"
  4423. livekit_server_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  4424. livekit_server_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else livekit_server_container_image_registry_prefix_upstream_default }}"
  4425. livekit_server_container_network: "{{ matrix_addons_container_network }}"
  4426. livekit_server_container_additional_networks_auto: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if (livekit_server_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else [] }}"
  4427. livekit_server_container_additional_volumes_auto: |
  4428. {{
  4429. (
  4430. [
  4431. {
  4432. 'src': (traefik_certs_dumper_dumped_certificates_path + '/' + livekit_server_config_turn_domain + '/certificate.crt'),
  4433. 'dst': livekit_server_config_turn_cert_file,
  4434. 'options': 'ro',
  4435. },
  4436. {
  4437. 'src': (traefik_certs_dumper_dumped_certificates_path + '/' + livekit_server_config_turn_domain + '/privatekey.key'),
  4438. 'dst': livekit_server_config_turn_key_file,
  4439. 'options': 'ro',
  4440. },
  4441. ] if (matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and traefik_certs_dumper_enabled and livekit_server_config_turn_enabled and (livekit_server_config_turn_cert_file and livekit_server_config_turn_key_file)) else []
  4442. )
  4443. }}
  4444. livekit_server_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  4445. livekit_server_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  4446. livekit_server_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  4447. livekit_server_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  4448. livekit_server_container_labels_public_metrics_middleware_basic_auth_enabled: "{{ matrix_metrics_exposure_http_basic_auth_enabled }}"
  4449. livekit_server_container_labels_public_metrics_middleware_basic_auth_users: "{{ matrix_metrics_exposure_http_basic_auth_users }}"
  4450. livekit_server_metrics_proxying_enabled: "{{ livekit_server_config_prometheus_enabled and matrix_metrics_exposure_enabled }}"
  4451. livekit_server_metrics_proxying_hostname: "{{ matrix_metrics_exposure_hostname }}"
  4452. livekit_server_metrics_proxying_path_prefix: "{{ matrix_metrics_exposure_path_prefix }}/livekit-server"
  4453. livekit_server_config_prometheus_enabled: "{{ prometheus_enabled or matrix_metrics_exposure_enabled }}"
  4454. livekit_server_config_keys_auto: |-
  4455. {{
  4456. {}
  4457. | combine(
  4458. {matrix_livekit_jwt_service_environment_variable_livekit_key: matrix_livekit_jwt_service_environment_variable_livekit_secret}
  4459. if matrix_livekit_jwt_service_enabled else {}
  4460. )
  4461. }}
  4462. # We only wish for matrix-livekit-jwt-service to create rooms, only for users on trusted homeservers.
  4463. # See `matrix_livekit_jwt_service_environment_variable_livekit_full_access_homeservers`.
  4464. #
  4465. # Ref:
  4466. # - https://github.com/element-hq/lk-jwt-service/releases/tag/v0.3.0
  4467. # - https://github.com/livekit/livekit/blob/5e483e7554e5afbf254acf84e3ec0aa6e108e758/config-sample.yaml#L168-L170
  4468. # - https://github.com/mother-of-all-self-hosting/ansible-role-livekit-server/commit/2a1b04552634097bdd26d472502a8f5bf1b8528f
  4469. livekit_server_config_room_auto_create: false
  4470. # The playbook intentionally uses a non-standard port than the default used by the role (5349),
  4471. # because Coturn is already using that port.
  4472. # Note that TURN is not enabled by default. See `livekit_server_config_turn_enabled`.
  4473. livekit_server_config_turn_tls_port: 5350
  4474. # The playbook intentionally uses a non-standard port than the default used by the role (3478),
  4475. # because Coturn is already using that port.
  4476. # Note that TURN is not enabled by default. See `livekit_server_config_turn_enabled`.
  4477. livekit_server_config_turn_udp_port: 3479
  4478. # LiveKit's TURN implementation requires SSL certificates.
  4479. # We only enable it if we can provide them automatically via Traefik + Traefik Certs Dumper.
  4480. livekit_server_config_turn_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and traefik_certs_dumper_enabled }}"
  4481. livekit_server_config_turn_cert_file: |-
  4482. {{
  4483. {
  4484. 'playbook-managed-traefik': ('/certificate.crt' if traefik_certs_dumper_enabled else ''),
  4485. 'other-traefik-container': ('/certificate.crt' if traefik_certs_dumper_enabled else ''),
  4486. 'none': '',
  4487. }[matrix_playbook_reverse_proxy_type]
  4488. }}
  4489. livekit_server_config_turn_key_file: |-
  4490. {{
  4491. {
  4492. 'playbook-managed-traefik': ('/privatekey.key' if traefik_certs_dumper_enabled else ''),
  4493. 'other-traefik-container': ('/privatekey.key' if traefik_certs_dumper_enabled else ''),
  4494. 'none': '',
  4495. }[matrix_playbook_reverse_proxy_type]
  4496. }}
  4497. livekit_server_systemd_required_services_list_auto: |
  4498. {{
  4499. ([traefik_certs_dumper_identifier + '-wait-for-domain@' + livekit_server_config_turn_domain + '.service'] if matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and traefik_certs_dumper_enabled and livekit_server_config_turn_enabled else [])
  4500. }}
  4501. ########################################################################
  4502. # #
  4503. # /livekit-server #
  4504. # #
  4505. ########################################################################
  4506. ########################################################################
  4507. # #
  4508. # matrix-livekit-jwt-service #
  4509. # #
  4510. ########################################################################
  4511. matrix_livekit_jwt_service_enabled: "{{ matrix_rtc_enabled and livekit_server_enabled }}"
  4512. matrix_livekit_jwt_service_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}"
  4513. matrix_livekit_jwt_service_hostname: "{{ matrix_server_fqn_matrix }}"
  4514. matrix_livekit_jwt_service_path_prefix: "/livekit-jwt-service"
  4515. matrix_livekit_jwt_service_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  4516. matrix_livekit_jwt_service_container_image_registry_prefix_upstream: "{{ matrix_container_global_registry_prefix_override if matrix_container_global_registry_prefix_override else matrix_livekit_jwt_service_container_image_registry_prefix_upstream_default }}"
  4517. matrix_livekit_jwt_service_container_network: "{{ matrix_addons_container_network }}"
  4518. matrix_livekit_jwt_service_container_additional_networks_auto: |
  4519. {{
  4520. ([matrix_playbook_reverse_proxyable_services_additional_network] if (matrix_livekit_jwt_service_container_labels_traefik_enabled and matrix_playbook_reverse_proxyable_services_additional_network) else [])
  4521. }}
  4522. matrix_livekit_jwt_service_container_labels_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  4523. matrix_livekit_jwt_service_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  4524. matrix_livekit_jwt_service_container_labels_traefik_entrypoints: "{{ traefik_entrypoint_primary }}"
  4525. matrix_livekit_jwt_service_container_labels_traefik_tls_certResolver: "{{ traefik_certResolver_primary }}"
  4526. matrix_livekit_jwt_service_environment_variable_livekit_url: "{{ livekit_server_websocket_public_url }}"
  4527. matrix_livekit_jwt_service_environment_variable_livekit_key: "{{ (matrix_homeserver_generic_secret_key + ':lk.key') | hash('sha512') | to_uuid }}"
  4528. matrix_livekit_jwt_service_environment_variable_livekit_secret: "{{ (matrix_homeserver_generic_secret_key + ':lk.secret') | hash('sha512') | to_uuid }}"
  4529. matrix_livekit_jwt_service_environment_variable_livekit_full_access_homeservers_list: ["{{ matrix_domain }}"]
  4530. ########################################################################
  4531. # #
  4532. # /matrix-livekit-jwt-service #
  4533. # #
  4534. ########################################################################