Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

3608 satır
179 KiB

  1. ---
  2. # This variables file wires together the various components (roles) used by the playbook.
  3. #
  4. # Roles used by playbook are pretty minimal and kept independent of one another as much as possible.
  5. # To deliver a turnkey fully-featured Matrix server, this playbook needs
  6. # to connect them all together. It does so by overriding role variables.
  7. #
  8. # You can also override ANY variable (seen here or in any given role),
  9. # by re-defining it in your own configuration file (`inventory/host_vars/matrix.<your-domain>`).
  10. ########################################################################
  11. # #
  12. # 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. # Controls whether to run the Traefik role or not
  19. # See the `com.devture.ansible.role.traefik` section below for role configuration.
  20. #
  21. # There's a difference between `devture_traefik_enabled` and `matrix_playbook_traefik_role_enabled`.
  22. # `devture_traefik_enabled` controls what the Traefik role would do - when not enabled, it will run uninstall tasks, etc.
  23. # `matrix_playbook_traefik_role_enabled` controls if the Traefik role would even run at all.
  24. #
  25. # Sometimes, you're installing Traefik via a different (related playbook) which uses the same role.
  26. # In such cases, you'd like to disable the role in this playbook from bothering with Traefik at all (`matrix_playbook_traefik_role_enabled: false`).
  27. # If you used `devture_traefik_enabled: false` + `matrix_playbook_traefik_role_enabled: true` instead, you'd see the Treafik role here
  28. # try to delete Traefik data (`/devture-traefik`) installed by the other playbook.
  29. matrix_playbook_traefik_role_enabled: "{{ matrix_playbook_reverse_proxy_type != 'other-traefik-container' }}"
  30. # Controls whether to attach Traefik labels to services.
  31. # This is separate from `devture_traefik_enabled` and `matrix_playbook_traefik_role_enabled`,
  32. # because you may wish to disable Traefik installation by the playbook, yet still use Traefik
  33. # installed in another way.
  34. matrix_playbook_traefik_labels_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  35. matrix_playbook_traefik_certs_dumper_role_enabled: "{{ (matrix_playbook_reverse_proxy_type == 'playbook-managed-traefik' and devture_traefik_config_entrypoint_web_secure_enabled) or matrix_playbook_reverse_proxy_type == 'other-traefik-container' }}"
  36. # Controls the additional network that reverse-proxyable services will be connected to.
  37. matrix_playbook_reverse_proxyable_services_additional_network: "{{ devture_traefik_container_network if devture_traefik_enabled else '' }}"
  38. matrix_playbook_ssl_retrieval_method: "{{ 'lets-encrypt' if matrix_playbook_traefik_certs_dumper_role_enabled else matrix_ssl_retrieval_method }}"
  39. matrix_playbook_ssl_enabled: "{{ matrix_playbook_ssl_retrieval_method in ['lets-encrypt', 'self-signed', 'manually-managed'] }}"
  40. ########################################################################
  41. # #
  42. # /Playbook #
  43. # #
  44. ########################################################################
  45. ########################################################################
  46. # #
  47. # base #
  48. # #
  49. ########################################################################
  50. matrix_homeserver_container_extra_arguments_auto: |
  51. {{
  52. (['--mount type=bind,src=' + matrix_appservice_discord_config_path + '/registration.yaml,dst=/matrix-appservice-discord-registration.yaml,ro'] if matrix_appservice_discord_enabled else [])
  53. +
  54. (['--mount type=bind,src=' + matrix_appservice_irc_config_path + '/registration.yaml,dst=/matrix-appservice-irc-registration.yaml,ro'] if matrix_appservice_irc_enabled else [])
  55. +
  56. (['--mount type=bind,src=' + matrix_appservice_kakaotalk_config_path + '/registration.yaml,dst=/matrix-appservice-kakaotalk-registration.yaml,ro'] if matrix_appservice_kakaotalk_enabled else [])
  57. +
  58. (['--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 [])
  59. +
  60. (['--mount type=bind,src=' + matrix_appservice_webhooks_config_path + '/webhooks-registration.yaml,dst=/matrix-appservice-webhooks-registration.yaml,ro'] if matrix_appservice_webhooks_enabled else [])
  61. +
  62. (['--mount type=bind,src=' + matrix_beeper_linkedin_config_path + '/registration.yaml,dst=/matrix-beeper-linkedin-registration.yaml,ro'] if matrix_beeper_linkedin_enabled else [])
  63. +
  64. (['--mount type=bind,src=' + matrix_go_skype_bridge_config_path + '/registration.yaml,dst=/matrix-go-skype-bridge-registration.yaml,ro'] if matrix_go_skype_bridge_enabled else [])
  65. +
  66. (['--mount type=bind,src=' + matrix_heisenbridge_base_path + '/registration.yaml,dst=/heisenbridge-registration.yaml,ro'] if matrix_heisenbridge_enabled else [])
  67. +
  68. (['--mount type=bind,src=' + matrix_hookshot_base_path + '/registration.yml,dst=/hookshot-registration.yml,ro'] if matrix_hookshot_enabled else [])
  69. +
  70. (['--mount type=bind,src=' + matrix_mautrix_discord_config_path + '/registration.yaml,dst=/matrix-mautrix-discord-registration.yaml,ro'] if matrix_mautrix_discord_enabled else [])
  71. +
  72. (['--mount type=bind,src=' + matrix_mautrix_slack_config_path + '/registration.yaml,dst=/matrix-mautrix-slack-registration.yaml,ro'] if matrix_mautrix_slack_enabled else [])
  73. +
  74. (['--mount type=bind,src=' + matrix_mautrix_facebook_config_path + '/registration.yaml,dst=/matrix-mautrix-facebook-registration.yaml,ro'] if matrix_mautrix_facebook_enabled else [])
  75. +
  76. (['--mount type=bind,src=' + matrix_mautrix_googlechat_config_path + '/registration.yaml,dst=/matrix-mautrix-googlechat-registration.yaml,ro'] if matrix_mautrix_googlechat_enabled else [])
  77. +
  78. (['--mount type=bind,src=' + matrix_mautrix_hangouts_config_path + '/registration.yaml,dst=/matrix-mautrix-hangouts-registration.yaml,ro'] if matrix_mautrix_hangouts_enabled else [])
  79. +
  80. (['--mount type=bind,src=' + matrix_mautrix_instagram_config_path + '/registration.yaml,dst=/matrix-mautrix-instagram-registration.yaml,ro'] if matrix_mautrix_instagram_enabled else [])
  81. +
  82. (['--mount type=bind,src=' + matrix_mautrix_signal_config_path + '/registration.yaml,dst=/matrix-mautrix-signal-registration.yaml,ro'] if matrix_mautrix_signal_enabled else [])
  83. +
  84. (['--mount type=bind,src=' + matrix_mautrix_telegram_config_path + '/registration.yaml,dst=/matrix-mautrix-telegram-registration.yaml,ro'] if matrix_mautrix_telegram_enabled else [])
  85. +
  86. (['--mount type=bind,src=' + matrix_mautrix_twitter_config_path + '/registration.yaml,dst=/matrix-mautrix-twitter-registration.yaml,ro'] if matrix_mautrix_twitter_enabled else [])
  87. +
  88. (['--mount type=bind,src=' + matrix_mautrix_whatsapp_config_path + '/registration.yaml,dst=/matrix-mautrix-whatsapp-registration.yaml,ro'] if matrix_mautrix_whatsapp_enabled else [])
  89. +
  90. (['--mount type=bind,src=' + matrix_mx_puppet_discord_config_path + '/registration.yaml,dst=/matrix-mx-puppet-discord-registration.yaml,ro'] if matrix_mx_puppet_discord_enabled else [])
  91. +
  92. (['--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 [])
  93. +
  94. (['--mount type=bind,src=' + matrix_mx_puppet_instagram_config_path + '/registration.yaml,dst=/matrix-mx-puppet-instagram-registration.yaml,ro'] if matrix_mx_puppet_instagram_enabled else [])
  95. +
  96. (['--mount type=bind,src=' + matrix_mx_puppet_slack_config_path + '/registration.yaml,dst=/matrix-mx-puppet-slack-registration.yaml,ro'] if matrix_mx_puppet_slack_enabled else [])
  97. +
  98. (['--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 [])
  99. +
  100. (['--mount type=bind,src=' + matrix_mx_puppet_twitter_config_path + '/registration.yaml,dst=/matrix-mx-puppet-twitter-registration.yaml,ro'] if matrix_mx_puppet_twitter_enabled else [])
  101. +
  102. (['--mount type=bind,src=' + matrix_sms_bridge_config_path + '/registration.yaml,dst=/matrix-sms-bridge-registration.yaml,ro'] if matrix_sms_bridge_enabled else [])
  103. +
  104. (['--mount type=bind,src=' + matrix_cactus_comments_app_service_config_file + ',dst=/matrix-cactus-comments.yaml,ro'] if matrix_cactus_comments_enabled else [])
  105. }}
  106. matrix_homeserver_app_service_config_files_auto: |
  107. {{
  108. (['/matrix-appservice-discord-registration.yaml'] if matrix_appservice_discord_enabled else [])
  109. +
  110. (['/matrix-appservice-irc-registration.yaml'] if matrix_appservice_irc_enabled else [])
  111. +
  112. (['/matrix-appservice-kakaotalk-registration.yaml'] if matrix_appservice_kakaotalk_enabled else [])
  113. +
  114. (['/matrix-appservice-slack-registration.yaml'] if matrix_appservice_slack_enabled else [])
  115. +
  116. (['/matrix-appservice-webhooks-registration.yaml'] if matrix_appservice_webhooks_enabled else [])
  117. +
  118. (['/matrix-beeper-linkedin-registration.yaml'] if matrix_beeper_linkedin_enabled else [])
  119. +
  120. (['/matrix-go-skype-bridge-registration.yaml'] if matrix_go_skype_bridge_enabled else [])
  121. +
  122. (['/heisenbridge-registration.yaml'] if matrix_heisenbridge_enabled else [])
  123. +
  124. (['/hookshot-registration.yml'] if matrix_hookshot_enabled else [])
  125. +
  126. (['/matrix-mautrix-discord-registration.yaml'] if matrix_mautrix_discord_enabled else [])
  127. +
  128. (['/matrix-mautrix-slack-registration.yaml'] if matrix_mautrix_slack_enabled else [])
  129. +
  130. (['/matrix-mautrix-facebook-registration.yaml'] if matrix_mautrix_facebook_enabled else [])
  131. +
  132. (['/matrix-mautrix-googlechat-registration.yaml'] if matrix_mautrix_googlechat_enabled else [])
  133. +
  134. (['/matrix-mautrix-hangouts-registration.yaml'] if matrix_mautrix_hangouts_enabled else [])
  135. +
  136. (['/matrix-mautrix-instagram-registration.yaml'] if matrix_mautrix_instagram_enabled else [])
  137. +
  138. (['/matrix-mautrix-signal-registration.yaml'] if matrix_mautrix_signal_enabled else [])
  139. +
  140. (['/matrix-mautrix-telegram-registration.yaml'] if matrix_mautrix_telegram_enabled else [])
  141. +
  142. (['/matrix-mautrix-twitter-registration.yaml'] if matrix_mautrix_twitter_enabled else [])
  143. +
  144. (['/matrix-mautrix-whatsapp-registration.yaml'] if matrix_mautrix_whatsapp_enabled else [])
  145. +
  146. (['/matrix-mx-puppet-discord-registration.yaml'] if matrix_mx_puppet_discord_enabled else [])
  147. +
  148. (['/matrix-mx-puppet-groupme-registration.yaml'] if matrix_mx_puppet_groupme_enabled else [])
  149. +
  150. (['/matrix-mx-puppet-instagram-registration.yaml'] if matrix_mx_puppet_instagram_enabled else [])
  151. +
  152. (['/matrix-mx-puppet-slack-registration.yaml'] if matrix_mx_puppet_slack_enabled else [])
  153. +
  154. (['/matrix-mx-puppet-steam-registration.yaml'] if matrix_mx_puppet_steam_enabled else [])
  155. +
  156. (['/matrix-mx-puppet-twitter-registration.yaml'] if matrix_mx_puppet_twitter_enabled else [])
  157. +
  158. (['/matrix-sms-bridge-registration.yaml'] if matrix_sms_bridge_enabled else [])
  159. +
  160. (['/matrix-cactus-comments.yaml'] if matrix_cactus_comments_enabled else [])
  161. }}
  162. ########################################################################
  163. # #
  164. # /base #
  165. # #
  166. ########################################################################
  167. ########################################################################
  168. # #
  169. # com.devture.ansible.role.systemd_service_manager #
  170. # #
  171. ########################################################################
  172. # This list is not exhaustive and final.
  173. # Synapse workers are still injected into the list at runtime.
  174. # Additional JVB workers (playbooks/jitsi_jvb.yml -- roles/custom/matrix-jitsi/tasks/init_additional_jvb.yml) override this variable at runtime as well.
  175. #
  176. # Priority levels are like this:
  177. # - core services (the homeserver) get a level of ~1000
  178. # - services that core services depend on (database, Redis, ntfy, etc.) get a lower level - between 500 and 1000
  179. # - reverse-proxying services get level 3000
  180. # - Matrix utility services (bridges, bots) get a level of 2000/2200, so that:
  181. # - they can start before the reverse-proxy
  182. # - so that, when the reverse-proxy is up (Matrix is up), all bots and bridges can be interacted with
  183. # - monitoring services (Prometheus, Grafana, ..) get a level of 4000 - they can start later than all-of-Matrix
  184. # - services which aren't time-sensitive (various crons and timers) get a level of 5000 - they can start later than all-of-Matrix
  185. #
  186. # `matrix-bot-postmoogle.service` has a higher priority number (4000), unlike other bots' priority (2200),
  187. # because it requires SSL certificates. If Traefik is used, then Postmoogle needs to start at least after Traefik (3500) and Traefik certs dumper (3500).
  188. devture_systemd_service_manager_services_list_auto: |
  189. {{
  190. ([{'name': (backup_borg_identifier + '.timer'), 'priority': 5000, 'groups': ['matrix', 'backup', 'borg']}] if backup_borg_enabled else [])
  191. +
  192. ([{'name': 'matrix-bot-buscarron.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'buscarron']}] if matrix_bot_buscarron_enabled else [])
  193. +
  194. ([{'name': 'matrix-bot-go-neb.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'go-neb']}] if matrix_bot_go_neb_enabled else [])
  195. +
  196. ([{'name': 'matrix-bot-honoroit.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'honoroit']}] if matrix_bot_honoroit_enabled else [])
  197. +
  198. ([{'name': 'matrix-bot-matrix-registration-bot.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'registration-bot']}] if matrix_bot_matrix_registration_bot_enabled else [])
  199. +
  200. ([{'name': 'matrix-bot-matrix-reminder-bot.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'reminder-bot']}] if matrix_bot_matrix_reminder_bot_enabled else [])
  201. +
  202. ([{'name': 'matrix-bot-maubot.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'maubot']}] if matrix_bot_maubot_enabled else [])
  203. +
  204. ([{'name': 'matrix-bot-mjolnir.service', 'priority': 4000, 'groups': ['matrix', 'bots', 'mjolnir']}] if matrix_bot_mjolnir_enabled else [])
  205. +
  206. ([{'name': 'matrix-bot-draupnir.service', 'priority': 4000, 'groups': ['matrix', 'bots', 'draupnir']}] if matrix_bot_draupnir_enabled else [])
  207. +
  208. ([{'name': 'matrix-bot-postmoogle.service', 'priority': 4000, 'groups': ['matrix', 'bots', 'postmoogle']}] if matrix_bot_postmoogle_enabled else [])
  209. +
  210. ([{'name': 'matrix-bot-chatgpt.service', 'priority': 2200, 'groups': ['matrix', 'bots', 'chatgpt']}] if matrix_bot_chatgpt_enabled else [])
  211. +
  212. ([{'name': 'matrix-appservice-discord.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'appservice-discord']}] if matrix_appservice_discord_enabled else [])
  213. +
  214. ([{'name': 'matrix-appservice-irc.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'appservice-irc']}] if matrix_appservice_irc_enabled else [])
  215. +
  216. ([{'name': 'matrix-appservice-kakaotalk.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'appservice-kakaotalk']}] if matrix_appservice_kakaotalk_enabled else [])
  217. +
  218. ([{'name': 'matrix-appservice-kakaotalk-node.service', 'priority': 1900, 'groups': ['matrix', 'bridges', 'appservice-kakaotalk', 'appservice-kakaotalk-node']}] if matrix_appservice_kakaotalk_enabled else [])
  219. +
  220. ([{'name': 'matrix-appservice-slack.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'appservice-slack']}] if matrix_appservice_slack_enabled else [])
  221. +
  222. ([{'name': 'matrix-appservice-webhooks.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'appservice-webhooks']}] if matrix_appservice_webhooks_enabled else [])
  223. +
  224. ([{'name': 'matrix-beeper-linkedin.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'beeper-linkedin']}] if matrix_beeper_linkedin_enabled else [])
  225. +
  226. ([{'name': 'matrix-go-skype-bridge.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'go-skype']}] if matrix_go_skype_bridge_enabled else [])
  227. +
  228. ([{'name': 'matrix-heisenbridge.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'heisenbridge']}] if matrix_heisenbridge_enabled else [])
  229. +
  230. ([{'name': 'matrix-hookshot.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'hookshot']}] if matrix_hookshot_enabled else [])
  231. +
  232. ([{'name': 'matrix-mautrix-discord.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-discord']}] if matrix_mautrix_discord_enabled else [])
  233. +
  234. ([{'name': 'matrix-mautrix-slack.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-slack']}] if matrix_mautrix_slack_enabled else [])
  235. +
  236. ([{'name': 'matrix-mautrix-facebook.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-facebook']}] if matrix_mautrix_facebook_enabled else [])
  237. +
  238. ([{'name': 'matrix-mautrix-googlechat.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-googlechat']}] if matrix_mautrix_googlechat_enabled else [])
  239. +
  240. ([{'name': 'matrix-mautrix-hangouts.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-hangouts']}] if matrix_mautrix_hangouts_enabled else [])
  241. +
  242. ([{'name': 'matrix-mautrix-instagram.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-instagram']}] if matrix_mautrix_instagram_enabled else [])
  243. +
  244. ([{'name': 'matrix-mautrix-signal.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-signal']}] if matrix_mautrix_signal_enabled else [])
  245. +
  246. ([{'name': 'matrix-mautrix-signal-daemon.service', 'priority': 1900, 'groups': ['matrix', 'bridges', 'mautrix-signal', 'mautrix-signal-daemon']}] if matrix_mautrix_signal_enabled else [])
  247. +
  248. ([{'name': 'matrix-mautrix-telegram.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-telegram']}] if matrix_mautrix_telegram_enabled else [])
  249. +
  250. ([{'name': 'matrix-mautrix-twitter.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-twitter']}] if matrix_mautrix_twitter_enabled else [])
  251. +
  252. ([{'name': 'matrix-mautrix-whatsapp.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mautrix-whatsapp']}] if matrix_mautrix_whatsapp_enabled else [])
  253. +
  254. ([{'name': 'matrix-mx-puppet-discord.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mx-puppet-discord']}] if matrix_mx_puppet_discord_enabled else [])
  255. +
  256. ([{'name': 'matrix-mx-puppet-groupme.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mx-puppet-groupme']}] if matrix_mx_puppet_groupme_enabled else [])
  257. +
  258. ([{'name': 'matrix-mx-puppet-instagram.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mx-puppet-instagram']}] if matrix_mx_puppet_instagram_enabled else [])
  259. +
  260. ([{'name': 'matrix-mx-puppet-slack.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mx-puppet-slack']}] if matrix_mx_puppet_slack_enabled else [])
  261. +
  262. ([{'name': 'matrix-mx-puppet-steam.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mx-puppet-steam']}] if matrix_mx_puppet_steam_enabled else [])
  263. +
  264. ([{'name': 'matrix-mx-puppet-twitter.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'mx-puppet-twitter']}] if matrix_mx_puppet_twitter_enabled else [])
  265. +
  266. ([{'name': 'matrix-sms-bridge.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'sms']}] if matrix_sms_bridge_enabled else [])
  267. +
  268. ([{'name': 'matrix-cactus-comments.service', 'priority': 2000, 'groups': ['matrix', 'cactus-comments']}] if matrix_cactus_comments_enabled else [])
  269. +
  270. ([{'name': 'matrix-client-cinny.service', 'priority': 2000, 'groups': ['matrix', 'clients', 'cinny']}] if matrix_client_cinny_enabled else [])
  271. +
  272. ([{'name': 'matrix-client-element.service', 'priority': 2000, 'groups': ['matrix', 'clients', 'element']}] if matrix_client_element_enabled else [])
  273. +
  274. ([{'name': 'matrix-client-hydrogen.service', 'priority': 2000, 'groups': ['matrix', 'clients', 'hydrogen']}] if matrix_client_hydrogen_enabled else [])
  275. +
  276. ([{'name': ('matrix-' + matrix_homeserver_implementation + '.service'), 'priority': 1000, 'groups': ['matrix', 'homeservers', matrix_homeserver_implementation]}] if matrix_homeserver_enabled else [])
  277. +
  278. ([{'name': 'matrix-corporal.service', 'priority': 1500, 'groups': ['matrix', 'corporal']}] if matrix_corporal_enabled else [])
  279. +
  280. ([{'name': 'matrix-coturn.service', 'priority': 4000, 'groups': ['matrix', 'coturn']}] if matrix_coturn_enabled else [])
  281. +
  282. ([{'name': 'matrix-coturn-reload.timer', 'priority': 5000, 'groups': ['matrix', 'coturn']}] if (matrix_coturn_enabled and matrix_coturn_tls_enabled) else [])
  283. +
  284. ([{'name': 'matrix-dimension.service', 'priority': 4000, 'groups': ['matrix', 'integration-managers', 'dimension']}] if matrix_dimension_enabled else [])
  285. +
  286. ([{'name': 'matrix-dynamic-dns.service', 'priority': 5000, 'groups': ['matrix', 'dynamic-dns']}] if matrix_dynamic_dns_enabled else [])
  287. +
  288. ([{'name': 'matrix-email2matrix.service', 'priority': 2000, 'groups': ['matrix', 'bridges', 'email2matrix']}] if matrix_email2matrix_enabled else [])
  289. +
  290. ([{'name': 'matrix-etherpad.service', 'priority': 4000, 'groups': ['matrix', 'etherpad']}] if matrix_etherpad_enabled else [])
  291. +
  292. ([{'name': 'matrix-grafana.service', 'priority': 4000, 'groups': ['matrix', 'monitoring', 'grafana']}] if matrix_grafana_enabled else [])
  293. +
  294. ([{'name': 'matrix-jitsi-web.service', 'priority': 4200, 'groups': ['matrix', 'jitsi', 'jitsi-web']}] if matrix_jitsi_enabled else [])
  295. +
  296. ([{'name': 'matrix-jitsi-prosody.service', 'priority': 4000, 'groups': ['matrix', 'jitsi', 'jitsi-prosody']}] if matrix_jitsi_enabled else [])
  297. +
  298. ([{'name': 'matrix-jitsi-jicofo.service', 'priority': 4100, 'groups': ['matrix', 'jitsi', 'jitsi-jicofo']}] if matrix_jitsi_enabled else [])
  299. +
  300. ([{'name': 'matrix-jitsi-jvb.service', 'priority': 4100, 'groups': ['matrix', 'jitsi', 'jitsi-jvb']}] if matrix_jitsi_enabled else [])
  301. +
  302. ([{'name': 'matrix-ldap-registration-proxy.service', 'priority': 2000, 'groups': ['matrix', 'ldap-registration-proxy']}] if matrix_ldap_registration_proxy_enabled else [])
  303. +
  304. ([{'name': 'matrix-ma1sd.service', 'priority': 2000, 'groups': ['matrix', 'ma1sd']}] if matrix_ma1sd_enabled else [])
  305. +
  306. ([{'name': 'matrix-mailer.service', 'priority': 2000, 'groups': ['matrix', 'mailer']}] if matrix_mailer_enabled else [])
  307. +
  308. ([{'name': 'matrix-nginx-proxy.service', 'priority': 3000, 'groups': ['matrix', 'nginx', 'reverse-proxies']}] if matrix_nginx_proxy_enabled else [])
  309. +
  310. (matrix_ssl_renewal_systemd_units_list | selectattr('applicable') | selectattr('enableable') | list )
  311. +
  312. ([{'name': 'matrix-ntfy.service', 'priority': 800, 'groups': ['matrix', 'ntfy']}] if matrix_ntfy_enabled else [])
  313. +
  314. ([{'name': (devture_postgres_identifier + '.service'), 'priority': 500, 'groups': ['matrix', 'postgres']}] if devture_postgres_enabled else [])
  315. +
  316. ([{'name': (devture_postgres_backup_identifier + '.service'), 'priority': 5000, 'groups': ['matrix', 'backup', 'postgres-backup']}] if devture_postgres_backup_enabled else [])
  317. +
  318. ([{'name': 'matrix-prometheus.service', 'priority': 4000, 'groups': ['matrix', 'monitoring', 'prometheus', 'prometheus-core']}] if matrix_prometheus_enabled else [])
  319. +
  320. ([{'name': (prometheus_node_exporter_identifier + '.service'), 'priority': 3900, 'groups': ['matrix', 'monitoring', 'prometheus', 'prometheus-exporters']}] if prometheus_node_exporter_enabled else [])
  321. +
  322. ([{'name': (prometheus_postgres_exporter_identifier + '.service'), 'priority': 3900, 'groups': ['matrix', 'monitoring', 'prometheus', 'prometheus-exporters']}] if prometheus_postgres_exporter_enabled else [])
  323. +
  324. ([{'name': 'matrix-prometheus-nginxlog-exporter.service', 'priority': 3900, 'groups': ['matrix', 'monitoring', 'prometheus', 'prometheus-exporters']}] if matrix_prometheus_nginxlog_exporter_enabled else [])
  325. +
  326. ([{'name': 'matrix-redis', 'priority': 750, 'groups': ['matrix', 'redis']}] if matrix_redis_enabled else [])
  327. +
  328. ([{'name': 'matrix-registration.service', 'priority': 4000, 'groups': ['matrix', 'registration']}] if matrix_registration_enabled else [])
  329. +
  330. ([{'name': 'matrix-sygnal.service', 'priority': 800, 'groups': ['matrix', 'sygnal']}] if matrix_sygnal_enabled else [])
  331. +
  332. ([{'name': 'matrix-goofys.service', 'priority': 800, 'groups': ['matrix', 'goofys']}] if matrix_s3_media_store_enabled else [])
  333. +
  334. ([{'name': 'matrix-synapse-s3-storage-provider-migrate.timer', 'priority': 5000, 'groups': ['matrix']}] if matrix_synapse_ext_synapse_s3_storage_provider_enabled else [])
  335. +
  336. ([{'name': 'matrix-synapse-admin.service', 'priority': 4000, 'groups': ['matrix', 'synapse-admin']}] if matrix_synapse_admin_enabled else [])
  337. +
  338. ([{'name': 'matrix-synapse-reverse-proxy-companion.service', 'priority': 1500, 'groups': ['matrix', 'homeservers', 'synapse', 'reverse-proxies']}] if matrix_synapse_reverse_proxy_companion_enabled else [])
  339. +
  340. ([{'name': 'matrix-user-verification-service.service', 'priority': 800, 'groups': ['matrix', 'matrix-user-verification-service']}] if matrix_user_verification_service_enabled else [])
  341. +
  342. ([{'name': 'devture-traefik.service', 'priority': 3000, 'groups': ['matrix', 'traefik', 'reverse-proxies']}] if devture_traefik_enabled else [])
  343. +
  344. ([{'name': (devture_traefik_certs_dumper_identifier + '.service'), 'priority': 3500, 'groups': ['matrix', 'traefik-certs-dumper']}] if matrix_playbook_traefik_certs_dumper_role_enabled else [])
  345. }}
  346. ########################################################################
  347. # #
  348. # /com.devture.ansible.role.systemd_service_manager #
  349. # #
  350. ########################################################################
  351. ########################################################################
  352. # #
  353. # com.devture.ansible.role.timesync #
  354. # #
  355. ########################################################################
  356. # To completely disable installing systemd-timesyncd/ntpd, use `devture_timesync_installation_enabled: false`.
  357. ########################################################################
  358. # #
  359. # /com.devture.ansible.role.timesync #
  360. # #
  361. ########################################################################
  362. ######################################################################
  363. #
  364. # com.devture.ansible.role.playbook_state_preserver
  365. #
  366. ######################################################################
  367. # To completely disable this feature, use `devture_playbook_state_preserver_enabled: false`.
  368. devture_playbook_state_preserver_uid: "{{ matrix_user_uid }}"
  369. devture_playbook_state_preserver_gid: "{{ matrix_user_gid }}"
  370. devture_playbook_state_preserver_vars_preservation_dst: "{{ matrix_base_data_path }}/vars.yml"
  371. devture_playbook_state_preserver_commit_hash_preservation_dst: "{{ matrix_base_data_path }}/git_hash.yml"
  372. ######################################################################
  373. #
  374. # /com.devture.ansible.role.playbook_state_preserver
  375. #
  376. ######################################################################
  377. ######################################################################
  378. #
  379. # matrix-base
  380. #
  381. ######################################################################
  382. matrix_identity_server_url: "{{ ('https://' + matrix_server_fqn_matrix) if matrix_ma1sd_enabled else None }}"
  383. matrix_homeserver_container_url: |-
  384. {{
  385. 'http://matrix-nginx-proxy:12080' if matrix_nginx_proxy_enabled else {
  386. 'synapse': ('http://matrix-synapse-reverse-proxy-companion:8008' if matrix_synapse_reverse_proxy_companion_enabled else 'http://matrix-synapse:'+ matrix_synapse_container_client_api_port|string),
  387. 'dendrite': ('http://matrix-dendrite:' + matrix_dendrite_http_bind_port|string),
  388. 'conduit': ('http://matrix-conduit:' + matrix_conduit_port_number|string),
  389. }[matrix_homeserver_implementation]
  390. }}
  391. matrix_homeserver_container_federation_url: |-
  392. {{
  393. 'http://matrix-nginx-proxy:12088' if matrix_nginx_proxy_enabled else {
  394. 'synapse': ('http://matrix-synapse-reverse-proxy-companion:8048' if matrix_synapse_reverse_proxy_companion_enabled else 'http://matrix-synapse:'+ matrix_synapse_container_federation_api_plain_port|string),
  395. 'dendrite': ('http://matrix-dendrite:' + matrix_dendrite_http_bind_port|string),
  396. 'conduit': ('http://matrix-conduit:' + matrix_conduit_port_number|string),
  397. }[matrix_homeserver_implementation]
  398. }}
  399. matrix_integration_manager_rest_url: "{{ matrix_dimension_integrations_rest_url if matrix_dimension_enabled else None }}"
  400. matrix_integration_manager_ui_url: "{{ matrix_dimension_integrations_ui_url if matrix_dimension_enabled else None }}"
  401. ######################################################################
  402. #
  403. # /matrix-base
  404. #
  405. ######################################################################
  406. ######################################################################
  407. #
  408. # matrix-bridge-appservice-discord
  409. #
  410. ######################################################################
  411. # We don't enable bridges by default.
  412. matrix_appservice_discord_enabled: false
  413. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-appservice-discord over the container network.
  414. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  415. # matrix-appservice-discord's client-server port to the local host.
  416. 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 '' }}"
  417. # If the homeserver disables presence, it's likely better (less wasteful) to also disable presence on the bridge side.
  418. matrix_appservice_discord_bridge_disablePresence: "{{ not matrix_synapse_presence_enabled }}"
  419. matrix_appservice_discord_systemd_required_services_list: |
  420. {{
  421. ['docker.service']
  422. +
  423. ['matrix-' + matrix_homeserver_implementation + '.service']
  424. +
  425. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  426. +
  427. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  428. }}
  429. matrix_appservice_discord_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'discord.as.token', rounds=655555) | to_uuid }}"
  430. matrix_appservice_discord_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'discord.hs.token', rounds=655555) | to_uuid }}"
  431. # We only make this use Postgres if our own Postgres server is enabled.
  432. # It's only then (for now) that we can automatically create the necessary database and user for this service.
  433. matrix_appservice_discord_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  434. matrix_appservice_discord_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  435. matrix_appservice_discord_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'as.discord.db', rounds=655555) | to_uuid }}"
  436. ######################################################################
  437. #
  438. # /matrix-bridge-appservice-discord
  439. #
  440. ######################################################################
  441. ######################################################################
  442. #
  443. # matrix-appservice-webhooks
  444. #
  445. ######################################################################
  446. # We don't enable bridges by default.
  447. matrix_appservice_webhooks_enabled: false
  448. matrix_appservice_webhooks_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  449. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-appservice-webhooks over the container network.
  450. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  451. # matrix-appservice-webhooks' client-server port to the local host.
  452. matrix_appservice_webhooks_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':' ~ matrix_appservice_webhooks_matrix_port) if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  453. matrix_appservice_webhooks_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'webhook.as.token', rounds=655555) | to_uuid }}"
  454. matrix_appservice_webhooks_homeserver_url: "{{ matrix_homeserver_container_url }}"
  455. matrix_appservice_webhooks_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'webhook.hs.token', rounds=655555) | to_uuid }}"
  456. matrix_appservice_webhooks_id_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'webhook.id.token', rounds=655555) | to_uuid }}"
  457. matrix_appservice_webhooks_systemd_required_services_list: |
  458. {{
  459. ['docker.service']
  460. +
  461. ['matrix-' + matrix_homeserver_implementation + '.service']
  462. +
  463. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  464. }}
  465. ######################################################################
  466. #
  467. # /matrix-appservice-webhooks
  468. #
  469. ######################################################################
  470. ######################################################################
  471. #
  472. # matrix-appservice-slack
  473. #
  474. ######################################################################
  475. # We don't enable bridges by default.
  476. matrix_appservice_slack_enabled: false
  477. matrix_appservice_slack_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  478. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-appservice-slack over the container network.
  479. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  480. # matrix-appservice-slack's client-server port to the local host.
  481. 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 '' }}"
  482. matrix_appservice_slack_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'slack.as.token', rounds=655555) | to_uuid }}"
  483. matrix_appservice_slack_homeserver_url: "{{ matrix_homeserver_container_url }}"
  484. matrix_appservice_slack_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'slack.hs.token', rounds=655555) | to_uuid }}"
  485. matrix_appservice_slack_id_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'slack.id.token', rounds=655555) | to_uuid }}"
  486. matrix_appservice_slack_systemd_required_services_list: |
  487. {{
  488. ['docker.service']
  489. +
  490. ['matrix-' + matrix_homeserver_implementation + '.service']
  491. +
  492. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  493. }}
  494. # Postgres is the default, except if not using internal Postgres server
  495. matrix_appservice_slack_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'nedb' }}"
  496. matrix_appservice_slack_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  497. matrix_appservice_slack_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'as.slack.db', rounds=655555) | to_uuid }}"
  498. ######################################################################
  499. #
  500. # /matrix-bridge-appservice-slack
  501. #
  502. ######################################################################
  503. ######################################################################
  504. #
  505. # matrix-bridge-appservice-irc
  506. #
  507. ######################################################################
  508. # We don't enable bridges by default.
  509. matrix_appservice_irc_enabled: false
  510. matrix_appservice_irc_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  511. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-appservice-irc over the container network.
  512. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  513. # matrix-appservice-irc's client-server port to the local host.
  514. 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 '' }}"
  515. # The IRC bridge docs say that if homeserver presence is disabled, it's better to also disable
  516. # IRC bridge presence, for performance reasons.
  517. matrix_appservice_irc_homeserver_enablePresence: "{{ matrix_synapse_presence_enabled }}"
  518. matrix_appservice_irc_systemd_required_services_list: |
  519. {{
  520. ['docker.service']
  521. +
  522. ['matrix-' + matrix_homeserver_implementation + '.service']
  523. +
  524. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  525. }}
  526. matrix_appservice_irc_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'irc.as.token', rounds=655555) | to_uuid }}"
  527. matrix_appservice_irc_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'irc.hs.token', rounds=655555) | to_uuid }}"
  528. matrix_appservice_irc_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'nedb' }}"
  529. matrix_appservice_irc_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  530. matrix_appservice_irc_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'as.irc.db', rounds=655555) | to_uuid }}"
  531. ######################################################################
  532. #
  533. # /matrix-bridge-appservice-irc
  534. #
  535. ######################################################################
  536. ######################################################################
  537. #
  538. # matrix-bridge-appservice-kakaotalk
  539. #
  540. ######################################################################
  541. # We don't enable bridges by default.
  542. matrix_appservice_kakaotalk_enabled: false
  543. matrix_appservice_kakaotalk_systemd_required_services_list: |
  544. {{
  545. ['docker.service']
  546. +
  547. ['matrix-appservice-kakaotalk-node.service']
  548. +
  549. ['matrix-' + matrix_homeserver_implementation + '.service']
  550. +
  551. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  552. +
  553. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  554. }}
  555. matrix_appservice_kakaotalk_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'as.kakao.hs', rounds=655555) | to_uuid }}"
  556. matrix_appservice_kakaotalk_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'as.kakao.hs', rounds=655555) | to_uuid }}"
  557. 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 '' }}"
  558. matrix_appservice_kakaotalk_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  559. matrix_appservice_kakaotalk_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  560. matrix_appservice_kakaotalk_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'as.kakao.db', rounds=655555) | to_uuid }}"
  561. ######################################################################
  562. #
  563. # /matrix-bridge-appservice-kakaotalk
  564. #
  565. ######################################################################
  566. ######################################################################
  567. #
  568. # matrix-bridge-beeper-linkedin
  569. #
  570. ######################################################################
  571. # We don't enable bridges by default.
  572. matrix_beeper_linkedin_enabled: false
  573. matrix_beeper_linkedin_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  574. matrix_beeper_linkedin_systemd_required_services_list: |
  575. {{
  576. ['docker.service']
  577. +
  578. ['matrix-' + matrix_homeserver_implementation + '.service']
  579. +
  580. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  581. +
  582. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  583. }}
  584. matrix_beeper_linkedin_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'linked.as.token', rounds=655555) | to_uuid }}"
  585. matrix_beeper_linkedin_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'linked.hs.token', rounds=655555) | to_uuid }}"
  586. matrix_beeper_linkedin_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  587. matrix_beeper_linkedin_bridge_presence: "{{ matrix_synapse_presence_enabled if matrix_synapse_enabled else true }}"
  588. matrix_beeper_linkedin_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  589. matrix_beeper_linkedin_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'maulinkedin.db', rounds=655555) | to_uuid }}"
  590. ######################################################################
  591. #
  592. # /matrix-bridge-beeper-linkedin
  593. #
  594. ######################################################################
  595. ######################################################################
  596. #
  597. # matrix-bridge-go-skype-bridge
  598. #
  599. ######################################################################
  600. # We don't enable bridges by default.
  601. matrix_go_skype_bridge_enabled: false
  602. matrix_go_skype_bridge_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  603. matrix_go_skype_bridge_systemd_required_services_list: |
  604. {{
  605. ['docker.service']
  606. +
  607. ['matrix-' + matrix_homeserver_implementation + '.service']
  608. +
  609. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  610. +
  611. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  612. }}
  613. matrix_go_skype_bridge_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'skype.as.token', rounds=655555) | to_uuid }}"
  614. matrix_go_skype_bridge_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'skype.hs.token', rounds=655555) | to_uuid }}"
  615. matrix_go_skype_bridge_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  616. # Postgres is the default, except if not using internal Postgres server
  617. matrix_go_skype_bridge_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  618. matrix_go_skype_bridge_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  619. matrix_go_skype_bridge_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'goskype.db', rounds=655555) | to_uuid }}"
  620. ######################################################################
  621. #
  622. # /matrix-bridge-go-skype-bridge
  623. #
  624. ######################################################################
  625. ######################################################################
  626. #
  627. # matrix-bridge-mautrix-discord
  628. #
  629. ######################################################################
  630. # We don't enable bridges by default.
  631. matrix_mautrix_discord_enabled: false
  632. matrix_mautrix_discord_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  633. matrix_mautrix_discord_systemd_required_services_list: |
  634. {{
  635. ['docker.service']
  636. +
  637. ['matrix-' + matrix_homeserver_implementation + '.service']
  638. +
  639. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  640. +
  641. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  642. }}
  643. matrix_mautrix_discord_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'maudisc.as.tok', rounds=655555) | to_uuid }}"
  644. matrix_mautrix_discord_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'maudisc.hs.tok', rounds=655555) | to_uuid }}"
  645. matrix_mautrix_discord_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  646. # Postgres is the default, except if not using internal Postgres server
  647. matrix_mautrix_discord_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  648. matrix_mautrix_discord_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  649. matrix_mautrix_discord_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'maudiscord.db', rounds=655555) | to_uuid }}"
  650. ######################################################################
  651. #
  652. # /matrix-bridge-mautrix-discord
  653. #
  654. ######################################################################
  655. ######################################################################
  656. #
  657. # matrix-bridge-mautrix-slack
  658. #
  659. ######################################################################
  660. # We don't enable bridges by default.
  661. matrix_mautrix_slack_enabled: false
  662. matrix_mautrix_slack_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  663. matrix_mautrix_slack_systemd_required_services_list: |
  664. {{
  665. ['docker.service']
  666. +
  667. ['matrix-' + matrix_homeserver_implementation + '.service']
  668. +
  669. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  670. +
  671. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  672. }}
  673. matrix_mautrix_slack_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mauslack.as.tok', rounds=655555) | to_uuid }}"
  674. matrix_mautrix_slack_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mauslack.hs.tok', rounds=655555) | to_uuid }}"
  675. matrix_mautrix_slack_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  676. # Postgres is the default, except if not using internal Postgres server
  677. matrix_mautrix_slack_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  678. matrix_mautrix_slack_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  679. matrix_mautrix_slack_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mauslack.db', rounds=655555) | to_uuid }}"
  680. ######################################################################
  681. #
  682. # /matrix-bridge-mautrix-slack
  683. #
  684. ######################################################################
  685. ######################################################################
  686. #
  687. # matrix-bridge-mautrix-facebook
  688. #
  689. ######################################################################
  690. # We don't enable bridges by default.
  691. matrix_mautrix_facebook_enabled: false
  692. matrix_mautrix_facebook_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  693. matrix_mautrix_facebook_systemd_required_services_list: |
  694. {{
  695. ['docker.service']
  696. +
  697. ['matrix-' + matrix_homeserver_implementation + '.service']
  698. +
  699. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  700. +
  701. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  702. }}
  703. matrix_mautrix_facebook_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'fb.as.token', rounds=655555) | to_uuid }}"
  704. matrix_mautrix_facebook_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'fb.hs.token', rounds=655555) | to_uuid }}"
  705. matrix_mautrix_facebook_public_endpoint: "/{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'facebook', rounds=655555) | to_uuid }}"
  706. matrix_mautrix_facebook_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':9008') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  707. matrix_mautrix_facebook_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  708. matrix_mautrix_facebook_bridge_presence: "{{ matrix_synapse_presence_enabled if matrix_synapse_enabled else true }}"
  709. # People using an external Prometheus server will need to toggle all of these to be able to consume metrics remotely:
  710. # - `matrix_mautrix_facebook_metrics_enabled`
  711. # - `matrix_mautrix_facebook_proxying_metrics_enabled`
  712. # - `matrix_nginx_proxy_proxy_matrix_metrics_enabled`
  713. matrix_mautrix_facebook_metrics_enabled: "{{ matrix_prometheus_enabled }}"
  714. # We'd like to force-set people with external Postgres to SQLite, so the bridge role can complain
  715. # and point them to a migration path.
  716. matrix_mautrix_facebook_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  717. matrix_mautrix_facebook_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  718. matrix_mautrix_facebook_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mau.fb.db', rounds=655555) | to_uuid }}"
  719. ######################################################################
  720. #
  721. # /matrix-bridge-mautrix-facebook
  722. #
  723. ######################################################################
  724. ######################################################################
  725. #
  726. # matrix-bridge-mautrix-googlechat
  727. #
  728. ######################################################################
  729. # We don't enable bridges by default.
  730. matrix_mautrix_googlechat_enabled: false
  731. matrix_mautrix_googlechat_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  732. matrix_mautrix_googlechat_systemd_required_services_list: |
  733. {{
  734. ['docker.service']
  735. +
  736. ['matrix-' + matrix_homeserver_implementation + '.service']
  737. +
  738. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  739. +
  740. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  741. }}
  742. matrix_mautrix_googlechat_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'gc.as.token', rounds=655555) | to_uuid }}"
  743. matrix_mautrix_googlechat_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'gc.hs.token', rounds=655555) | to_uuid }}"
  744. 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 '' }}"
  745. matrix_mautrix_googlechat_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  746. # Postgres is the default, except if not using internal Postgres server
  747. matrix_mautrix_googlechat_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  748. matrix_mautrix_googlechat_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  749. matrix_mautrix_googlechat_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mau.gc.db', rounds=655555) | to_uuid }}"
  750. ######################################################################
  751. #
  752. # /matrix-bridge-mautrix-googlechat
  753. #
  754. ######################################################################
  755. ######################################################################
  756. #
  757. # matrix-bridge-mautrix-hangouts
  758. #
  759. ######################################################################
  760. # We don't enable bridges by default.
  761. matrix_mautrix_hangouts_enabled: false
  762. matrix_mautrix_hangouts_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  763. matrix_mautrix_hangouts_systemd_required_services_list: |
  764. {{
  765. ['docker.service']
  766. +
  767. ['matrix-' + matrix_homeserver_implementation + '.service']
  768. +
  769. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  770. +
  771. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  772. }}
  773. matrix_mautrix_hangouts_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'ho.as.token', rounds=655555) | to_uuid }}"
  774. matrix_mautrix_hangouts_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'ho.hs.token', rounds=655555) | to_uuid }}"
  775. matrix_mautrix_hangouts_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':9007') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  776. matrix_mautrix_hangouts_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  777. # Postgres is the default, except if not using internal Postgres server
  778. matrix_mautrix_hangouts_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  779. matrix_mautrix_hangouts_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  780. matrix_mautrix_hangouts_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mau.hangouts.db', rounds=655555) | to_uuid }}"
  781. ######################################################################
  782. #
  783. # /matrix-bridge-mautrix-hangouts
  784. #
  785. ######################################################################
  786. ######################################################################
  787. #
  788. # matrix-bridge-mautrix-instagram
  789. #
  790. ######################################################################
  791. # We don't enable bridges by default.
  792. matrix_mautrix_instagram_enabled: false
  793. matrix_mautrix_instagram_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  794. matrix_mautrix_instagram_systemd_required_services_list: |
  795. {{
  796. ['docker.service']
  797. +
  798. ['matrix-' + matrix_homeserver_implementation + '.service']
  799. +
  800. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  801. +
  802. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  803. }}
  804. matrix_mautrix_instagram_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'ig.as.token', rounds=655555) | to_uuid }}"
  805. matrix_mautrix_instagram_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'ig.hs.token', rounds=655555) | to_uuid }}"
  806. matrix_mautrix_instagram_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  807. matrix_mautrix_instagram_bridge_presence: "{{ matrix_synapse_presence_enabled if matrix_synapse_enabled else true }}"
  808. # People using an external Prometheus server will need to toggle all of these to be able to consume metrics remotely:
  809. # - `matrix_mautrix_instagram_metrics_enabled`
  810. # - `matrix_mautrix_instagram_proxying_metrics_enabled`
  811. # - `matrix_nginx_proxy_proxy_matrix_metrics_enabled`
  812. matrix_mautrix_instagram_metrics_enabled: "{{ matrix_prometheus_enabled }}"
  813. # We'd like to force-set people with external Postgres to SQLite, so the bridge role can complain
  814. # and point them to a migration path.
  815. matrix_mautrix_instagram_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  816. matrix_mautrix_instagram_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  817. matrix_mautrix_instagram_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mau.ig.db', rounds=655555) | to_uuid }}"
  818. ######################################################################
  819. #
  820. # /matrix-bridge-mautrix-instagram
  821. #
  822. ######################################################################
  823. ######################################################################
  824. #
  825. # matrix-bridge-mautrix-signal
  826. #
  827. ######################################################################
  828. # We don't enable bridges by default.
  829. matrix_mautrix_signal_enabled: false
  830. matrix_mautrix_signal_systemd_required_services_list: |
  831. {{
  832. ['docker.service']
  833. +
  834. ['matrix-' + matrix_homeserver_implementation + '.service']
  835. +
  836. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  837. +
  838. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  839. +
  840. ['matrix-mautrix-signal-daemon.service']
  841. }}
  842. matrix_mautrix_signal_homeserver_domain: '{{ matrix_domain }}'
  843. matrix_mautrix_signal_homeserver_address: "{{ matrix_homeserver_container_url }}"
  844. matrix_mautrix_signal_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'si.hs.token', rounds=655555) | to_uuid }}"
  845. matrix_mautrix_signal_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'si.as.token', rounds=655555) | to_uuid }}"
  846. matrix_mautrix_signal_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  847. # People using an external Prometheus server will need to toggle all of these to be able to consume metrics remotely:
  848. # - `matrix_mautrix_signal_metrics_enabled`
  849. # - `matrix_mautrix_signal_proxying_metrics_enabled`
  850. # - `matrix_nginx_proxy_proxy_matrix_metrics_enabled`
  851. matrix_mautrix_signal_metrics_enabled: "{{ matrix_prometheus_enabled }}"
  852. matrix_mautrix_signal_database_engine: 'postgres'
  853. matrix_mautrix_signal_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  854. matrix_mautrix_signal_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mau.signal.db', rounds=655555) | to_uuid }}"
  855. matrix_mautrix_signal_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  856. matrix_mautrix_signal_daemon_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  857. ######################################################################
  858. #
  859. # /matrix-bridge-mautrix-signal
  860. #
  861. ######################################################################
  862. ######################################################################
  863. #
  864. # matrix-bridge-mautrix-telegram
  865. #
  866. ######################################################################
  867. # We don't enable bridges by default.
  868. matrix_mautrix_telegram_enabled: false
  869. # Images are multi-arch (amd64 and arm64, but not arm32).
  870. matrix_mautrix_telegram_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  871. matrix_telegram_lottieconverter_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  872. matrix_telegram_lottieconverter_container_image_self_build_mask_arch: "{{ matrix_architecture != 'amd64' }}"
  873. matrix_mautrix_telegram_systemd_required_services_list: |
  874. {{
  875. ['docker.service']
  876. +
  877. ['matrix-' + matrix_homeserver_implementation + '.service']
  878. +
  879. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  880. +
  881. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  882. }}
  883. matrix_mautrix_telegram_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'telegr.as.token', rounds=655555) | to_uuid }}"
  884. matrix_mautrix_telegram_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'telegr.hs.token', rounds=655555) | to_uuid }}"
  885. matrix_mautrix_telegram_public_endpoint: "/{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'telegram', rounds=655555) | to_uuid }}"
  886. 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 '' }}"
  887. matrix_mautrix_telegram_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  888. # Postgres is the default, except if not using internal Postgres server
  889. matrix_mautrix_telegram_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  890. matrix_mautrix_telegram_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  891. matrix_mautrix_telegram_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mau.telegram.db', rounds=655555) | to_uuid }}"
  892. ######################################################################
  893. #
  894. # /matrix-bridge-mautrix-telegram
  895. #
  896. ######################################################################
  897. ######################################################################
  898. #
  899. # matrix-bridge-mautrix-twitter
  900. #
  901. ######################################################################
  902. # We don't enable bridges by default.
  903. matrix_mautrix_twitter_enabled: false
  904. matrix_mautrix_twitter_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  905. matrix_mautrix_twitter_systemd_required_services_list: |
  906. {{
  907. ['docker.service']
  908. +
  909. ['matrix-' + matrix_homeserver_implementation + '.service']
  910. +
  911. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  912. +
  913. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  914. }}
  915. matrix_mautrix_twitter_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'twt.as.token', rounds=655555) | to_uuid }}"
  916. matrix_mautrix_twitter_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'twt.hs.token', rounds=655555) | to_uuid }}"
  917. matrix_mautrix_twitter_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  918. matrix_mautrix_twitter_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  919. matrix_mautrix_twitter_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mau.twt.db', rounds=655555) | to_uuid if devture_postgres_enabled else '' }}"
  920. ######################################################################
  921. #
  922. # /matrix-bridge-mautrix-twitter
  923. #
  924. ######################################################################
  925. ######################################################################
  926. #
  927. # matrix-bridge-mautrix-whatsapp
  928. #
  929. ######################################################################
  930. # We don't enable bridges by default.
  931. matrix_mautrix_whatsapp_enabled: false
  932. matrix_mautrix_whatsapp_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  933. matrix_mautrix_whatsapp_systemd_required_services_list: |
  934. {{
  935. ['docker.service']
  936. +
  937. ['matrix-' + matrix_homeserver_implementation + '.service']
  938. +
  939. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  940. +
  941. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  942. }}
  943. matrix_mautrix_whatsapp_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'whats.as.token', rounds=655555) | to_uuid }}"
  944. matrix_mautrix_whatsapp_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'whats.hs.token', rounds=655555) | to_uuid }}"
  945. matrix_mautrix_whatsapp_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  946. # People using an external Prometheus server will need to toggle all of these to be able to consume metrics remotely:
  947. # - `matrix_mautrix_twitter_metrics_enabled`
  948. # - `matrix_mautrix_twitter_proxying_metrics_enabled`
  949. # - `matrix_nginx_proxy_proxy_matrix_metrics_enabled`
  950. matrix_mautrix_twitter_metrics_enabled: "{{ matrix_prometheus_enabled }}"
  951. # Postgres is the default, except if not using internal Postgres server
  952. matrix_mautrix_whatsapp_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  953. matrix_mautrix_whatsapp_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  954. matrix_mautrix_whatsapp_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mauwhatsapp.db', rounds=655555) | to_uuid }}"
  955. ######################################################################
  956. #
  957. # /matrix-bridge-mautrix-whatsapp
  958. #
  959. ######################################################################
  960. ######################################################################
  961. #
  962. # matrix-sms-bridge
  963. #
  964. ######################################################################
  965. # We don't enable bridges by default.
  966. matrix_sms_bridge_enabled: false
  967. matrix_sms_bridge_systemd_required_services_list: |
  968. {{
  969. ['docker.service']
  970. +
  971. ['matrix-' + matrix_homeserver_implementation + '.service']
  972. +
  973. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  974. }}
  975. matrix_sms_bridge_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'sms.as.token', rounds=655555) | to_uuid }}"
  976. matrix_sms_bridge_homeserver_port: "{{ matrix_synapse_container_client_api_port }}"
  977. matrix_sms_bridge_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'sms.hs.token', rounds=655555) | to_uuid }}"
  978. ######################################################################
  979. #
  980. # /matrix-sms-bridge
  981. #
  982. ######################################################################
  983. ######################################################################
  984. #
  985. # matrix-bridge-heisenbridge
  986. #
  987. ######################################################################
  988. # We don't enable bridges by default.
  989. matrix_heisenbridge_enabled: false
  990. matrix_heisenbridge_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'heisen.as.tok', rounds=655555) | to_uuid }}"
  991. matrix_heisenbridge_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'heisen.hs.tok', rounds=655555) | to_uuid }}"
  992. matrix_heisenbridge_systemd_wanted_services_list: |
  993. {{
  994. ['matrix-' + matrix_homeserver_implementation + '.service']
  995. +
  996. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  997. }}
  998. ######################################################################
  999. #
  1000. # /matrix-bridge-heisenbridge
  1001. #
  1002. ######################################################################
  1003. ######################################################################
  1004. #
  1005. # matrix-bridge-hookshot
  1006. #
  1007. ######################################################################
  1008. # We don't enable bridges by default.
  1009. matrix_hookshot_enabled: false
  1010. matrix_hookshot_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  1011. matrix_hookshot_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'hookshot.as.tok', rounds=655555) | to_uuid }}"
  1012. matrix_hookshot_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'hookshot.hs.tok', rounds=655555) | to_uuid }}"
  1013. matrix_hookshot_systemd_wanted_services_list: |
  1014. {{
  1015. (['matrix-' + matrix_homeserver_implementation + '.service'])
  1016. +
  1017. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1018. }}
  1019. matrix_hookshot_container_http_host_bind_ports_defaultmapping:
  1020. - "{{ matrix_playbook_service_host_bind_interface_prefix }}{{ matrix_hookshot_appservice_port }}:{{ matrix_hookshot_appservice_port }}"
  1021. - "{{ matrix_playbook_service_host_bind_interface_prefix }}{{ matrix_hookshot_metrics_port }}:{{ matrix_hookshot_metrics_port }}"
  1022. - "{{ matrix_playbook_service_host_bind_interface_prefix }}{{ matrix_hookshot_webhook_port }}:{{ matrix_hookshot_webhook_port }}"
  1023. - "{{ matrix_playbook_service_host_bind_interface_prefix }}{{ matrix_hookshot_provisioning_port }}:{{ matrix_hookshot_provisioning_port }}"
  1024. matrix_hookshot_container_http_host_bind_ports: "{{ matrix_hookshot_container_http_host_bind_ports_defaultmapping if matrix_playbook_service_host_bind_interface_prefix else [] }}"
  1025. matrix_hookshot_provisioning_enabled: "{{ matrix_hookshot_provisioning_secret and matrix_dimension_enabled }}"
  1026. # We only enable metrics (locally, in the container network) for the bridge if Prometheus is enabled.
  1027. #
  1028. # People using an external Prometheus server will need to toggle all of these to be able to consume metrics remotely:
  1029. # - `matrix_hookshot_metrics_enabled`
  1030. # - `matrix_hookshot_metrics_proxying_enabled`
  1031. # - `matrix_nginx_proxy_proxy_matrix_metrics_enabled`
  1032. matrix_hookshot_metrics_enabled: "{{ matrix_prometheus_enabled }}"
  1033. matrix_hookshot_urlprefix_port_enabled: "{{ matrix_nginx_proxy_container_https_host_bind_port == 443 if matrix_nginx_proxy_https_enabled else matrix_nginx_proxy_container_https_host_bind_port == 80 }}"
  1034. matrix_hookshot_urlprefix_port: ":{{ matrix_nginx_proxy_container_https_host_bind_port if matrix_nginx_proxy_https_enabled else matrix_nginx_proxy_container_http_host_bind_port }}"
  1035. matrix_hookshot_urlprefix: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' }}://{{ matrix_server_fqn_matrix }}{{ matrix_hookshot_urlprefix_port if matrix_hookshot_urlprefix_port_enabled else '' }}"
  1036. ######################################################################
  1037. #
  1038. # /matrix-bridge-hookshot
  1039. #
  1040. ######################################################################
  1041. ######################################################################
  1042. #
  1043. # matrix-bridge-mx-puppet-slack
  1044. #
  1045. ######################################################################
  1046. # We don't enable bridges by default.
  1047. matrix_mx_puppet_slack_enabled: false
  1048. matrix_mx_puppet_slack_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1049. matrix_mx_puppet_slack_systemd_required_services_list: |
  1050. {{
  1051. ['docker.service']
  1052. +
  1053. ['matrix-' + matrix_homeserver_implementation + '.service']
  1054. +
  1055. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1056. +
  1057. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1058. }}
  1059. matrix_mx_puppet_slack_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxslk.as.tok', rounds=655555) | to_uuid }}"
  1060. matrix_mx_puppet_slack_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxslk.hs.tok', rounds=655555) | to_uuid }}"
  1061. matrix_mx_puppet_slack_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  1062. # Postgres is the default, except if not using internal Postgres server
  1063. matrix_mx_puppet_slack_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1064. matrix_mx_puppet_slack_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1065. matrix_mx_puppet_slack_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxpup.slack.db', rounds=655555) | to_uuid }}"
  1066. ######################################################################
  1067. #
  1068. # /matrix-bridge-mx-puppet-slack
  1069. #
  1070. ######################################################################
  1071. ######################################################################
  1072. #
  1073. # matrix-bridge-mx-puppet-twitter
  1074. #
  1075. ######################################################################
  1076. # We don't enable bridges by default.
  1077. matrix_mx_puppet_twitter_enabled: false
  1078. matrix_mx_puppet_twitter_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1079. matrix_mx_puppet_twitter_systemd_required_services_list: |
  1080. {{
  1081. ['docker.service']
  1082. +
  1083. ['matrix-' + matrix_homeserver_implementation + '.service']
  1084. +
  1085. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1086. +
  1087. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1088. }}
  1089. matrix_mx_puppet_twitter_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxtwt.as.tok', rounds=655555) | to_uuid }}"
  1090. matrix_mx_puppet_twitter_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxtwt.hs.tok', rounds=655555) | to_uuid }}"
  1091. matrix_mx_puppet_twitter_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  1092. matrix_mx_puppet_twitter_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':' ~ matrix_mx_puppet_twitter_appservice_port) if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  1093. # Postgres is the default, except if not using internal Postgres server
  1094. matrix_mx_puppet_twitter_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1095. matrix_mx_puppet_twitter_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1096. matrix_mx_puppet_twitter_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxpup.twitter.db', rounds=655555) | to_uuid }}"
  1097. ######################################################################
  1098. #
  1099. # /matrix-bridge-mx-puppet-twitter
  1100. #
  1101. ######################################################################
  1102. ######################################################################
  1103. #
  1104. # matrix-bridge-mx-puppet-instagram
  1105. #
  1106. ######################################################################
  1107. # We don't enable bridges by default.
  1108. matrix_mx_puppet_instagram_enabled: false
  1109. matrix_mx_puppet_instagram_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1110. matrix_mx_puppet_instagram_systemd_required_services_list: |
  1111. {{
  1112. ['docker.service']
  1113. +
  1114. ['matrix-' + matrix_homeserver_implementation + '.service']
  1115. +
  1116. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1117. +
  1118. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1119. }}
  1120. matrix_mx_puppet_instagram_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxig.as.tok', rounds=655555) | to_uuid }}"
  1121. matrix_mx_puppet_instagram_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxig.hs.tok', rounds=655555) | to_uuid }}"
  1122. matrix_mx_puppet_instagram_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  1123. # Postgres is the default, except if not using internal Postgres server
  1124. matrix_mx_puppet_instagram_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1125. matrix_mx_puppet_instagram_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1126. matrix_mx_puppet_instagram_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxpup.ig.db', rounds=655555) | to_uuid }}"
  1127. ######################################################################
  1128. #
  1129. # /matrix-bridge-mx-puppet-instagram
  1130. #
  1131. ######################################################################
  1132. ######################################################################
  1133. #
  1134. # matrix-bridge-mx-puppet-discord
  1135. #
  1136. ######################################################################
  1137. # We don't enable bridges by default.
  1138. matrix_mx_puppet_discord_enabled: false
  1139. matrix_mx_puppet_discord_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1140. matrix_mx_puppet_discord_systemd_required_services_list: |
  1141. {{
  1142. ['docker.service']
  1143. +
  1144. ['matrix-' + matrix_homeserver_implementation + '.service']
  1145. +
  1146. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1147. +
  1148. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1149. }}
  1150. matrix_mx_puppet_discord_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxdsc.as.tok', rounds=655555) | to_uuid }}"
  1151. matrix_mx_puppet_discord_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxdsc.hs.tok', rounds=655555) | to_uuid }}"
  1152. matrix_mx_puppet_discord_login_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret if matrix_synapse_ext_password_provider_shared_secret_auth_enabled else '' }}"
  1153. # Postgres is the default, except if not using internal Postgres server
  1154. matrix_mx_puppet_discord_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1155. matrix_mx_puppet_discord_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1156. matrix_mx_puppet_discord_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxpup.dsc.db', rounds=655555) | to_uuid }}"
  1157. ######################################################################
  1158. #
  1159. # /matrix-bridge-mx-puppet-discord
  1160. #
  1161. ######################################################################
  1162. ######################################################################
  1163. #
  1164. # matrix-bridge-mx-puppet-steam
  1165. #
  1166. ######################################################################
  1167. # We don't enable bridges by default.
  1168. matrix_mx_puppet_steam_enabled: false
  1169. matrix_mx_puppet_steam_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  1170. matrix_mx_puppet_steam_systemd_required_services_list: |
  1171. {{
  1172. ['docker.service']
  1173. +
  1174. ['matrix-' + matrix_homeserver_implementation + '.service']
  1175. +
  1176. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1177. +
  1178. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1179. }}
  1180. matrix_mx_puppet_steam_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxste.as.tok', rounds=655555) | to_uuid }}"
  1181. matrix_mx_puppet_steam_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxste.hs.tok', rounds=655555) | to_uuid }}"
  1182. 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 '' }}"
  1183. # Postgres is the default, except if not using internal Postgres server
  1184. matrix_mx_puppet_steam_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1185. matrix_mx_puppet_steam_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1186. matrix_mx_puppet_steam_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxpup.steam.db', rounds=655555) | to_uuid }}"
  1187. ######################################################################
  1188. #
  1189. # /matrix-bridge-mx-puppet-steam
  1190. #
  1191. ######################################################################
  1192. ######################################################################
  1193. #
  1194. # matrix-bridge-mx-puppet-groupme
  1195. #
  1196. ######################################################################
  1197. # We don't enable bridges by default.
  1198. matrix_mx_puppet_groupme_enabled: false
  1199. matrix_mx_puppet_groupme_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1200. matrix_mx_puppet_groupme_systemd_required_services_list: |
  1201. {{
  1202. ['docker.service']
  1203. +
  1204. ['matrix-' + matrix_homeserver_implementation + '.service']
  1205. +
  1206. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1207. +
  1208. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1209. }}
  1210. matrix_mx_puppet_groupme_appservice_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxgro.as.tok', rounds=655555) | to_uuid }}"
  1211. matrix_mx_puppet_groupme_homeserver_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxgro.hs.tok', rounds=655555) | to_uuid }}"
  1212. 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 '' }}"
  1213. # Postgres is the default, except if not using internal Postgres server
  1214. matrix_mx_puppet_groupme_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1215. matrix_mx_puppet_groupme_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1216. matrix_mx_puppet_groupme_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxpup.groupme.db', rounds=655555) | to_uuid }}"
  1217. ######################################################################
  1218. #
  1219. # /matrix-bridge-mx-puppet-groupme
  1220. #
  1221. ######################################################################
  1222. ######################################################################
  1223. #
  1224. # matrix-bot-matrix-reminder-bot
  1225. #
  1226. ######################################################################
  1227. # We don't enable bots by default.
  1228. matrix_bot_matrix_reminder_bot_enabled: false
  1229. matrix_bot_matrix_reminder_bot_systemd_required_services_list: |
  1230. {{
  1231. ['docker.service']
  1232. +
  1233. ['matrix-' + matrix_homeserver_implementation + '.service']
  1234. +
  1235. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1236. +
  1237. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1238. }}
  1239. # Postgres is the default, except if not using internal Postgres server
  1240. matrix_bot_matrix_reminder_bot_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1241. matrix_bot_matrix_reminder_bot_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1242. matrix_bot_matrix_reminder_bot_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'reminder.bot.db', rounds=655555) | to_uuid }}"
  1243. matrix_bot_matrix_reminder_bot_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1244. ######################################################################
  1245. #
  1246. # /matrix-bot-matrix-reminder-bot
  1247. #
  1248. ######################################################################
  1249. ######################################################################
  1250. #
  1251. # matrix-bot-matrix-registration-bot
  1252. #
  1253. ######################################################################
  1254. # We don't enable bots by default.
  1255. matrix_bot_matrix_registration_bot_enabled: false
  1256. matrix_bot_matrix_registration_bot_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  1257. matrix_bot_matrix_registration_bot_systemd_required_services_list: |
  1258. {{
  1259. ['docker.service']
  1260. +
  1261. ['matrix-' + matrix_homeserver_implementation + '.service']
  1262. +
  1263. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1264. }}
  1265. ######################################################################
  1266. #
  1267. # /matrix-bot-matrix-registration-bot
  1268. #
  1269. ######################################################################
  1270. ######################################################################
  1271. #
  1272. # matrix-bot-maubot
  1273. #
  1274. ######################################################################
  1275. # We don't enable bots by default.
  1276. matrix_bot_maubot_enabled: false
  1277. matrix_bot_maubot_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  1278. matrix_bot_maubot_systemd_required_services_list: |
  1279. {{
  1280. ['docker.service']
  1281. +
  1282. ['matrix-' + matrix_homeserver_implementation + '.service']
  1283. +
  1284. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1285. +
  1286. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1287. }}
  1288. matrix_bot_maubot_registration_shared_secret: |-
  1289. {{
  1290. {
  1291. 'synapse': matrix_synapse_registration_shared_secret,
  1292. 'dendrite': matrix_dendrite_client_api_registration_shared_secret,
  1293. }[matrix_homeserver_implementation]
  1294. }}
  1295. matrix_bot_maubot_management_interface_http_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':' ~ matrix_bot_maubot_management_interface_port | string) if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  1296. # Postgres is the default, except if not using internal Postgres server
  1297. matrix_bot_maubot_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1298. matrix_bot_maubot_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1299. matrix_bot_maubot_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mxpup.dsc.db', rounds=655555) | to_uuid }}"
  1300. ######################################################################
  1301. #
  1302. # /matrix-bot-maubot
  1303. #
  1304. ######################################################################
  1305. ######################################################################
  1306. #
  1307. # matrix-bot-honoroit
  1308. #
  1309. ######################################################################
  1310. # We don't enable bots by default.
  1311. matrix_bot_honoroit_enabled: false
  1312. matrix_bot_honoroit_systemd_required_services_list: |
  1313. {{
  1314. ['docker.service']
  1315. +
  1316. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1317. +
  1318. (['matrix-synapse.service'] if matrix_synapse_enabled else [])
  1319. +
  1320. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1321. }}
  1322. # Postgres is the default, except if not using internal Postgres server
  1323. matrix_bot_honoroit_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1324. matrix_bot_honoroit_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1325. matrix_bot_honoroit_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'honoroit.bot.db', rounds=655555) | to_uuid }}"
  1326. matrix_bot_honoroit_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1327. ######################################################################
  1328. #
  1329. # /matrix-bot-honoroit
  1330. #
  1331. ######################################################################
  1332. ######################################################################
  1333. #
  1334. # matrix-bot-buscarron
  1335. #
  1336. ######################################################################
  1337. # We don't enable bots by default.
  1338. matrix_bot_buscarron_enabled: false
  1339. matrix_bot_buscarron_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1340. matrix_bot_buscarron_systemd_required_services_list: |
  1341. {{
  1342. ['docker.service']
  1343. +
  1344. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1345. +
  1346. (['matrix-synapse.service'] if matrix_synapse_enabled else [])
  1347. +
  1348. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1349. }}
  1350. # Postgres is the default, except if not using internal Postgres server
  1351. matrix_bot_buscarron_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1352. matrix_bot_buscarron_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1353. matrix_bot_buscarron_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'buscarron.bot.db', rounds=655555) | to_uuid }}"
  1354. ######################################################################
  1355. #
  1356. # /matrix-bot-buscarron
  1357. #
  1358. ######################################################################
  1359. ######################################################################
  1360. #
  1361. # matrix-bot-postmoogle
  1362. #
  1363. ######################################################################
  1364. # We don't enable bots by default.
  1365. matrix_bot_postmoogle_enabled: false
  1366. matrix_bot_postmoogle_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1367. matrix_bot_postmoogle_ssl_path: |-
  1368. {{
  1369. {
  1370. 'playbook-managed-traefik': devture_traefik_certs_dumper_dumped_certificates_dir_path,
  1371. 'other-traefik-container': devture_traefik_certs_dumper_dumped_certificates_dir_path,
  1372. 'playbook-managed-nginx': (matrix_ssl_config_dir_path if matrix_playbook_ssl_retrieval_method != 'none' else ''),
  1373. 'other-nginx-non-container': (matrix_ssl_config_dir_path if matrix_playbook_ssl_retrieval_method != 'none' else ''),
  1374. 'other-on-same-host': '',
  1375. 'other-on-another-host': '',
  1376. 'none': '',
  1377. }[matrix_playbook_reverse_proxy_type]
  1378. }}
  1379. matrix_playbook_bot_postmoogle_nginx_proxy_tls_cert: "{% for domain in matrix_bot_postmoogle_domains %}/ssl/live/{{ domain }}/fullchain.pem {% endfor %}"
  1380. matrix_playbook_bot_postmoogle_nginx_proxy_key: "{% for domain in matrix_bot_postmoogle_domains %}/ssl/live/{{ domain }}/privkey.pem {% endfor %}"
  1381. matrix_playbook_bot_postmoogle_traefik_tls_cert: "{% for domain in matrix_bot_postmoogle_domains %}/ssl/{{ domain }}/certificate.crt {% endfor %}"
  1382. matrix_playbook_bot_postmoogle_traefik_key: "{% for domain in matrix_bot_postmoogle_domains %}/ssl/{{ domain }}/privatekey.key {% endfor %}"
  1383. matrix_bot_postmoogle_tls_cert: |-
  1384. {{
  1385. {
  1386. 'playbook-managed-traefik': matrix_playbook_bot_postmoogle_traefik_tls_cert,
  1387. 'other-traefik-container': matrix_playbook_bot_postmoogle_traefik_tls_cert,
  1388. 'playbook-managed-nginx': (matrix_playbook_bot_postmoogle_nginx_proxy_tls_cert if matrix_playbook_ssl_retrieval_method != 'none' else ''),
  1389. 'other-nginx-non-container': (matrix_playbook_bot_postmoogle_nginx_proxy_tls_cert if matrix_playbook_ssl_retrieval_method != 'none' else ''),
  1390. 'other-on-same-host': '',
  1391. 'other-on-another-host': '',
  1392. 'none': '',
  1393. }[matrix_playbook_reverse_proxy_type]
  1394. }}
  1395. matrix_bot_postmoogle_tls_key: |-
  1396. {{
  1397. {
  1398. 'playbook-managed-traefik': matrix_playbook_bot_postmoogle_traefik_key,
  1399. 'other-traefik-container': matrix_playbook_bot_postmoogle_traefik_key,
  1400. 'playbook-managed-nginx': (matrix_playbook_bot_postmoogle_nginx_proxy_key if matrix_playbook_ssl_retrieval_method != 'none' else ''),
  1401. 'other-nginx-non-container': (matrix_playbook_bot_postmoogle_nginx_proxy_key if matrix_playbook_ssl_retrieval_method != 'none' else ''),
  1402. 'other-on-same-host': '',
  1403. 'other-on-another-host': '',
  1404. 'none': '',
  1405. }[matrix_playbook_reverse_proxy_type]
  1406. }}
  1407. matrix_playbook_bot_postmoogle_traefik_certs_dumper_waiter_services: "{% for domain in matrix_bot_postmoogle_domains %}{{ devture_traefik_certs_dumper_identifier }}-wait-for-domain@{{ domain }}.service {% endfor %}"
  1408. matrix_bot_postmoogle_systemd_required_services_list: |
  1409. {{
  1410. ['docker.service']
  1411. +
  1412. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1413. +
  1414. (['matrix-synapse.service'] if matrix_synapse_enabled else [])
  1415. +
  1416. (matrix_playbook_bot_postmoogle_traefik_certs_dumper_waiter_services | trim | split(' ') if matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and matrix_playbook_traefik_certs_dumper_role_enabled else [])
  1417. }}
  1418. # Postgres is the default, except if not using internal Postgres server
  1419. matrix_bot_postmoogle_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1420. matrix_bot_postmoogle_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1421. matrix_bot_postmoogle_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'postmoogle.db', rounds=655555) | to_uuid }}"
  1422. ######################################################################
  1423. #
  1424. # /matrix-bot-postmoogle
  1425. #
  1426. ######################################################################
  1427. ######################################################################
  1428. #
  1429. # matrix-bot-chatgpt
  1430. #
  1431. ######################################################################
  1432. # We don't enable bots by default.
  1433. matrix_bot_chatgpt_enabled: false
  1434. matrix_bot_chatgpt_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm64'] }}"
  1435. ######################################################################
  1436. #
  1437. # /matrix-bot-chatgpt
  1438. #
  1439. ######################################################################
  1440. ######################################################################
  1441. #
  1442. # matrix-bot-go-neb
  1443. #
  1444. ######################################################################
  1445. # We don't enable bots by default.
  1446. matrix_bot_go_neb_enabled: false
  1447. matrix_bot_go_neb_systemd_required_services_list: |
  1448. {{
  1449. ['docker.service']
  1450. +
  1451. ['matrix-' + matrix_homeserver_implementation + '.service']
  1452. +
  1453. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1454. }}
  1455. matrix_bot_go_neb_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':4050') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  1456. ######################################################################
  1457. #
  1458. # /matrix-bot-go-neb
  1459. #
  1460. ######################################################################
  1461. ######################################################################
  1462. #
  1463. # matrix-bot-mjolnir
  1464. #
  1465. ######################################################################
  1466. # We don't enable bots by default.
  1467. matrix_bot_mjolnir_enabled: false
  1468. matrix_bot_mjolnir_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1469. matrix_bot_mjolnir_systemd_required_services_list: |
  1470. {{
  1471. ['docker.service']
  1472. +
  1473. ['matrix-' + matrix_homeserver_implementation + '.service']
  1474. +
  1475. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1476. +
  1477. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1478. }}
  1479. ######################################################################
  1480. #
  1481. # /matrix-bot-mjolnir
  1482. #
  1483. ######################################################################
  1484. ######################################################################
  1485. #
  1486. # matrix-bot-draupnir
  1487. #
  1488. ######################################################################
  1489. # We don't enable bots by default.
  1490. matrix_bot_draupnir_enabled: false
  1491. matrix_bot_draupnir_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1492. matrix_bot_draupnir_systemd_required_services_list: |
  1493. {{
  1494. ['docker.service']
  1495. +
  1496. ['matrix-' + matrix_homeserver_implementation + '.service']
  1497. +
  1498. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1499. +
  1500. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1501. }}
  1502. ######################################################################
  1503. #
  1504. # /matrix-bot-draupnir
  1505. #
  1506. ######################################################################
  1507. ######################################################################
  1508. #
  1509. # etke/backup_borg
  1510. #
  1511. ######################################################################
  1512. backup_borg_enabled: false
  1513. backup_borg_identifier: matrix-backup-borg
  1514. backup_borg_base_path: "{{ matrix_base_data_path }}/backup-borg"
  1515. backup_borg_username: "{{ matrix_user_username }}"
  1516. backup_borg_uid: "{{ matrix_user_uid }}"
  1517. backup_borg_gid: "{{ matrix_user_gid }}"
  1518. backup_borg_container_network: "{{ devture_postgres_container_network if devture_postgres_enabled else backup_borg_identifier }}"
  1519. backup_borg_postgresql_version_detection_devture_postgres_role_name: "{{ 'galaxy/com.devture.ansible.role.postgres' if devture_postgres_enabled else '' }}"
  1520. backup_borg_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}"
  1521. backup_borg_postgresql_enabled: "{{ devture_postgres_enabled }}"
  1522. backup_borg_postgresql_databases_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1523. backup_borg_postgresql_databases_username: "{{ devture_postgres_connection_username if devture_postgres_enabled else '' }}"
  1524. backup_borg_postgresql_databases_password: "{{ devture_postgres_connection_password if devture_postgres_enabled else '' }}"
  1525. backup_borg_postgresql_databases_port: "{{ devture_postgres_connection_port if devture_postgres_enabled else 5432 }}"
  1526. backup_borg_postgresql_databases: "{{ devture_postgres_managed_databases | map(attribute='name') if devture_postgres_enabled else [] }}"
  1527. backup_borg_location_source_directories:
  1528. - "{{ matrix_base_data_path }}"
  1529. backup_borg_location_exclude_patterns: |
  1530. {{
  1531. ([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 [])
  1532. +
  1533. ([devture_postgres_data_path] if devture_postgres_enabled else [])
  1534. }}
  1535. backup_borg_systemd_required_services_list: |
  1536. {{
  1537. ['docker.service']
  1538. +
  1539. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1540. }}
  1541. ######################################################################
  1542. #
  1543. # /etke/backup_borg
  1544. #
  1545. ######################################################################
  1546. ######################################################################
  1547. #
  1548. # matrix-cactus-comments
  1549. #
  1550. ######################################################################
  1551. matrix_cactus_comments_enabled: false
  1552. # Derive secret values from homeserver secret
  1553. matrix_cactus_comments_as_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'cactus.as.token', rounds=655555) | to_uuid }}"
  1554. matrix_cactus_comments_hs_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'cactus.hs.token', rounds=655555) | to_uuid }}"
  1555. matrix_cactus_comments_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}"
  1556. matrix_cactus_comments_systemd_required_services_list: |
  1557. {{
  1558. (['docker.service'])
  1559. +
  1560. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1561. +
  1562. (['matrix-' + matrix_homeserver_implementation + '.service'])
  1563. }}
  1564. matrix_cactus_comments_client_nginx_path: "{{ '/cactus-comments/' if matrix_nginx_proxy_enabled else matrix_cactus_comments_client_path + '/' }}"
  1565. ######################################################################
  1566. #
  1567. # /matrix-cactus-comments
  1568. #
  1569. ######################################################################
  1570. ######################################################################
  1571. #
  1572. # matrix-corporal
  1573. #
  1574. ######################################################################
  1575. matrix_corporal_enabled: false
  1576. matrix_corporal_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}"
  1577. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-corporal over the container network.
  1578. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  1579. # matrix-corporal's web-server ports to the local host.
  1580. 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 '' }}"
  1581. 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 '' }}"
  1582. matrix_corporal_systemd_required_services_list: |
  1583. {{
  1584. (['docker.service'])
  1585. +
  1586. (['matrix-' + matrix_homeserver_implementation + '.service'])
  1587. }}
  1588. matrix_corporal_matrix_homeserver_api_endpoint: "{{ matrix_homeserver_container_url }}"
  1589. matrix_corporal_matrix_auth_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret }}"
  1590. # This is only useful if there's REST auth provider to make use of it.
  1591. matrix_corporal_http_gateway_internal_rest_auth_enabled: "{{ matrix_synapse_ext_password_provider_rest_auth_enabled }}"
  1592. matrix_corporal_matrix_registration_shared_secret: "{{ matrix_synapse_registration_shared_secret }}"
  1593. ######################################################################
  1594. #
  1595. # /matrix-corporal
  1596. #
  1597. ######################################################################
  1598. ######################################################################
  1599. #
  1600. # matrix-coturn
  1601. #
  1602. ######################################################################
  1603. matrix_coturn_enabled: true
  1604. matrix_coturn_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}"
  1605. matrix_coturn_turn_external_ip_address: "{{ ansible_host }}"
  1606. matrix_coturn_turn_static_auth_secret: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'coturn.sas', rounds=655555) | to_uuid }}"
  1607. matrix_coturn_tls_enabled: "{{ matrix_playbook_ssl_retrieval_method != 'none' }}"
  1608. matrix_coturn_tls_cert_path: |-
  1609. {{
  1610. {
  1611. 'playbook-managed-traefik': '/certificate.crt',
  1612. 'other-traefik-container': '/certificate.crt',
  1613. 'playbook-managed-nginx': '/fullchain.pem',
  1614. 'other-nginx-non-container': '/fullchain.pem',
  1615. 'other-on-same-host': '',
  1616. 'other-on-another-host': '',
  1617. 'none': '',
  1618. }[matrix_playbook_reverse_proxy_type]
  1619. }}
  1620. matrix_coturn_tls_key_path: |-
  1621. {{
  1622. {
  1623. 'playbook-managed-traefik': '/privatekey.key',
  1624. 'other-traefik-container': '/privatekey.key',
  1625. 'playbook-managed-nginx': '/privkey.pem',
  1626. 'other-nginx-non-container': '/privkey.pem',
  1627. 'other-on-same-host': '',
  1628. 'other-on-another-host': '',
  1629. 'none': '',
  1630. }[matrix_playbook_reverse_proxy_type]
  1631. }}
  1632. matrix_coturn_container_additional_volumes: |
  1633. {{
  1634. (
  1635. [
  1636. {
  1637. 'src': (matrix_ssl_config_dir_path + '/live/' + matrix_server_fqn_matrix + '/fullchain.pem'),
  1638. 'dst': '/fullchain.pem',
  1639. 'options': 'ro',
  1640. },
  1641. {
  1642. 'src': (matrix_ssl_config_dir_path + '/live/' + matrix_server_fqn_matrix + '/privkey.pem'),
  1643. 'dst': '/privkey.pem',
  1644. 'options': 'ro',
  1645. },
  1646. ] if matrix_playbook_reverse_proxy_type in ['playbook-managed-nginx', 'other-nginx-non-container'] else []
  1647. )
  1648. +
  1649. (
  1650. [
  1651. {
  1652. 'src': (devture_traefik_certs_dumper_dumped_certificates_dir_path + '/' + matrix_server_fqn_matrix + '/certificate.crt'),
  1653. 'dst': '/certificate.crt',
  1654. 'options': 'ro',
  1655. },
  1656. {
  1657. 'src': (devture_traefik_certs_dumper_dumped_certificates_dir_path + '/' + matrix_server_fqn_matrix + '/privatekey.key'),
  1658. 'dst': '/privatekey.key',
  1659. 'options': 'ro',
  1660. },
  1661. ] if matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and matrix_playbook_traefik_certs_dumper_role_enabled else []
  1662. )
  1663. }}
  1664. matrix_coturn_systemd_required_services_list: |
  1665. {{
  1666. ['docker.service']
  1667. +
  1668. ([devture_traefik_certs_dumper_identifier + '-wait-for-domain@' + matrix_server_fqn_matrix + '.service'] if matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] and matrix_playbook_traefik_certs_dumper_role_enabled else [])
  1669. }}
  1670. ######################################################################
  1671. #
  1672. # /matrix-coturn
  1673. #
  1674. ######################################################################
  1675. ######################################################################
  1676. #
  1677. # matrix-dimension
  1678. #
  1679. ######################################################################
  1680. matrix_dimension_enabled: false
  1681. matrix_dimension_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1682. # Normally, matrix-nginx-proxy is enabled and nginx can reach Dimension over the container network.
  1683. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  1684. # the Dimension HTTP port to the local host.
  1685. matrix_dimension_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':8184') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  1686. matrix_dimension_homeserver_federationUrl: "{{ matrix_homeserver_container_federation_url }}"
  1687. matrix_dimension_systemd_required_services_list: |
  1688. {{
  1689. ['docker.service']
  1690. +
  1691. ['matrix-' + matrix_homeserver_implementation + '.service']
  1692. +
  1693. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1694. +
  1695. (['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
  1696. }}
  1697. # Postgres is the default, except if not using internal Postgres server
  1698. matrix_dimension_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1699. matrix_dimension_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1700. matrix_dimension_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'dimension.db', rounds=655555) | to_uuid }}"
  1701. ######################################################################
  1702. #
  1703. # /matrix-dimension
  1704. #
  1705. ######################################################################
  1706. ######################################################################
  1707. #
  1708. # matrix-etherpad
  1709. #
  1710. ######################################################################
  1711. matrix_etherpad_enabled: false
  1712. matrix_etherpad_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':9001') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  1713. matrix_etherpad_base_url: "{{ 'https://' + matrix_server_fqn_dimension + matrix_etherpad_public_endpoint if matrix_etherpad_mode == 'dimension' else 'https://' + matrix_server_fqn_etherpad + '/' }}"
  1714. matrix_etherpad_systemd_required_services_list: |
  1715. {{
  1716. ['docker.service']
  1717. +
  1718. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1719. }}
  1720. matrix_etherpad_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1721. matrix_etherpad_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'etherpad.db', rounds=655555) | to_uuid }}"
  1722. ######################################################################
  1723. #
  1724. # /matrix-etherpad
  1725. #
  1726. ######################################################################
  1727. ######################################################################
  1728. #
  1729. # matrix-dynamic-dns
  1730. #
  1731. ######################################################################
  1732. matrix_dynamic_dns_enabled: false
  1733. ######################################################################
  1734. #
  1735. # /matrix-dynamic-dns
  1736. #
  1737. ######################################################################
  1738. ######################################################################
  1739. #
  1740. # matrix-email2matrix
  1741. #
  1742. ######################################################################
  1743. matrix_email2matrix_enabled: false
  1744. matrix_email2matrix_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}"
  1745. ######################################################################
  1746. #
  1747. # /matrix-email2matrix
  1748. #
  1749. ######################################################################
  1750. ######################################################################
  1751. #
  1752. # matrix-jitsi
  1753. #
  1754. ######################################################################
  1755. matrix_jitsi_enabled: false
  1756. # Normally, matrix-nginx-proxy is enabled and nginx can reach jitsi/web over the container network.
  1757. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  1758. # the Jitsi HTTP port to the local host.
  1759. matrix_jitsi_web_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':13080') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  1760. matrix_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 '' }}"
  1761. matrix_jitsi_prosody_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':5280') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  1762. matrix_jitsi_jibri_xmpp_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'jibri', rounds=655555) | to_uuid }}"
  1763. matrix_jitsi_jicofo_auth_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'jicofo', rounds=655555) | to_uuid }}"
  1764. matrix_jitsi_jvb_auth_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'jvb', rounds=655555) | to_uuid }}"
  1765. matrix_jitsi_web_stun_servers: |
  1766. {{
  1767. [
  1768. 'stun:' + matrix_server_fqn_matrix + ':5349',
  1769. 'stun:' + matrix_server_fqn_matrix + ':3478',
  1770. ]
  1771. if matrix_coturn_enabled
  1772. else [ 'stun:meet-jit-si-turnrelay.jitsi.net:443']
  1773. }}
  1774. # If the self-hosted Etherpad instance is available, it will also show up in Jitsi conferences,
  1775. # unless explicitly disabled by setting `matrix_jitsi_etherpad_enabled` to false.
  1776. # Falls back to the scalar.vector.im etherpad in case someone sets `matrix_jitsi_etherpad_enabled` to true,
  1777. # while also setting `matrix_etherpad_enabled` to false.
  1778. matrix_jitsi_etherpad_enabled: "{{ matrix_etherpad_enabled }}"
  1779. matrix_jitsi_etherpad_base: "{{ matrix_etherpad_base_url if matrix_etherpad_enabled else 'https://scalar.vector.im/etherpad' }}"
  1780. # Allow verification using JWT and matrix-UVS
  1781. matrix_jitsi_prosody_auth_matrix_uvs_auth_token: "{{ matrix_user_verification_service_uvs_auth_token }}"
  1782. matrix_jitsi_prosody_auth_matrix_uvs_location: "{{ matrix_user_verification_service_container_url }}"
  1783. matrix_jitsi_self_check_validate_certificates: "{{ false if matrix_ssl_retrieval_method == 'self-signed' else true }}"
  1784. ######################################################################
  1785. #
  1786. # /matrix-jitsi
  1787. #
  1788. ######################################################################
  1789. ######################################################################
  1790. #
  1791. # matrix-ldap-registration-proxy
  1792. #
  1793. ######################################################################
  1794. # This is only for users with a specific LDAP setup
  1795. matrix_ldap_registration_proxy_enabled: false
  1796. ######################################################################
  1797. #
  1798. # /matrix-ldap-registration-proxy
  1799. #
  1800. ######################################################################
  1801. ######################################################################
  1802. #
  1803. # matrix-mailer
  1804. #
  1805. ######################################################################
  1806. # By default, this playbook sets up an exim mailer server (running in a container).
  1807. # This is so that Synapse can send email reminders for unread messages.
  1808. # Other services (like ma1sd), also use the mailer.
  1809. matrix_mailer_enabled: true
  1810. matrix_mailer_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}"
  1811. ######################################################################
  1812. #
  1813. # /matrix-mailer
  1814. #
  1815. ######################################################################
  1816. ######################################################################
  1817. #
  1818. # matrix-ma1sd
  1819. #
  1820. ######################################################################
  1821. # We no longer install the ma1sd identity server by default.
  1822. #
  1823. # The main reason we used to install ma1sd by default in the past was to
  1824. # prevent Element from talking to the `matrix.org` / `vector.im` identity servers,
  1825. # by forcing it to talk to our own self-hosted (but otherwise useless) identity server instead,
  1826. # thus preventing contact list leaks.
  1827. #
  1828. # Since Element no longer defaults to using a public identity server if another one is not provided,
  1829. # we can stop installing ma1sd.
  1830. matrix_ma1sd_enabled: false
  1831. matrix_ma1sd_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  1832. # Normally, matrix-nginx-proxy is enabled and nginx can reach ma1sd over the container network.
  1833. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  1834. # ma1sd's web-server port.
  1835. matrix_ma1sd_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':' ~ matrix_ma1sd_container_port | string) if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  1836. # We enable Synapse integration via its Postgres database by default.
  1837. # When using another Identity store, you might wish to disable this and define
  1838. # your own configuration in `matrix_ma1sd_configuration_extension_yaml`.
  1839. matrix_ma1sd_synapsesql_enabled: true
  1840. matrix_ma1sd_synapsesql_type: postgresql
  1841. matrix_ma1sd_synapsesql_connection: //{{ matrix_synapse_database_host }}/{{ matrix_synapse_database_database }}?user={{ matrix_synapse_database_user | urlencode() }}&password={{ matrix_synapse_database_password | urlencode() }}
  1842. matrix_ma1sd_dns_overwrite_enabled: true
  1843. matrix_ma1sd_dns_overwrite_homeserver_client_name: "{{ matrix_server_fqn_matrix }}"
  1844. # The `matrix_ma1sd_dns_overwrite_homeserver_client_value` value when matrix_nginx_proxy_enabled is false covers the general case,
  1845. # but may be inaccurate if matrix-corporal is enabled.
  1846. matrix_ma1sd_dns_overwrite_homeserver_client_value: "{{ matrix_homeserver_container_url }}"
  1847. # By default, we send mail through the `matrix-mailer` service.
  1848. matrix_ma1sd_threepid_medium_email_identity_from: "{{ matrix_mailer_sender_address }}"
  1849. matrix_ma1sd_threepid_medium_email_connectors_smtp_host: "matrix-mailer"
  1850. matrix_ma1sd_threepid_medium_email_connectors_smtp_port: 8025
  1851. matrix_ma1sd_threepid_medium_email_connectors_smtp_tls: 0
  1852. matrix_ma1sd_self_check_validate_certificates: "{{ false if matrix_playbook_ssl_retrieval_method == 'self-signed' else true }}"
  1853. matrix_ma1sd_systemd_required_services_list: |
  1854. {{
  1855. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1856. }}
  1857. matrix_ma1sd_systemd_wanted_services_list: |
  1858. {{
  1859. (['matrix-corporal.service'] if matrix_corporal_enabled else ['matrix-' + matrix_homeserver_implementation + '.service'])
  1860. +
  1861. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  1862. +
  1863. (['matrix-mailer.service'] if matrix_mailer_enabled else [])
  1864. }}
  1865. # Postgres is the default, except if not using internal Postgres server
  1866. matrix_ma1sd_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  1867. matrix_ma1sd_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  1868. matrix_ma1sd_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'ma1sd.db', rounds=655555) | to_uuid }}"
  1869. ######################################################################
  1870. #
  1871. # /matrix-ma1sd
  1872. #
  1873. ######################################################################
  1874. ######################################################################
  1875. #
  1876. # matrix-nginx-proxy
  1877. #
  1878. ######################################################################
  1879. # This playbook installs its own nginx if
  1880. # - it's explicitly enabled
  1881. # - Traefik is in use. Not all services are Traefik-native yet, so we use reverse-proxy to some via a local-only matrix-nginx-proxy
  1882. matrix_nginx_proxy_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-nginx', 'playbook-managed-traefik', 'other-traefik-container'] }}"
  1883. # matrix-nginx-proxy is only to handle HTTPS only if it's the chosen reverse-proxy.
  1884. # It may be enabled even if it's not chosen. See `matrix_nginx_proxy_enabled`.
  1885. matrix_ssl_retrieval_method: "{{ 'lets-encrypt' if matrix_playbook_reverse_proxy_type == 'playbook-managed-nginx' else 'none' }}"
  1886. matrix_nginx_proxy_https_enabled: "{{ matrix_playbook_reverse_proxy_type == 'playbook-managed-nginx' }}"
  1887. # matrix-nginx-proxy is to publish ports only if it's the chosen reverse-proxy.
  1888. # It may be enabled even if it's not chosen. See `matrix_nginx_proxy_enabled`.
  1889. matrix_nginx_proxy_container_http_host_bind_port: "{{ '80' if matrix_playbook_reverse_proxy_type == 'playbook-managed-nginx' else '' }}"
  1890. matrix_nginx_proxy_container_federation_host_bind_port: "{{ matrix_federation_public_port if matrix_playbook_reverse_proxy_type == 'playbook-managed-nginx' else '' }}"
  1891. # matrix-nginx-proxy is to trust reverse-proxy forwarded protocol and headers, unless it's the "main" (chosen) reverse-proxy
  1892. matrix_nginx_proxy_trust_forwarded_proto: "{{ matrix_playbook_reverse_proxy_type != 'playbook-managed-nginx' }}"
  1893. matrix_nginx_proxy_x_forwarded_for: "{{ '$remote_addr' if matrix_playbook_reverse_proxy_type == 'playbook-managed-nginx' else '$proxy_add_x_forwarded_for' }}"
  1894. matrix_nginx_proxy_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [] }}"
  1895. matrix_nginx_proxy_proxy_matrix_client_api_addr_with_container: "{{ 'matrix-corporal:41080' if matrix_corporal_enabled else 'matrix-nginx-proxy:12080' }}"
  1896. matrix_nginx_proxy_proxy_matrix_client_api_addr_sans_container: "{{ '127.0.0.1:41080' if matrix_corporal_enabled else '127.0.0.1:12080' }}"
  1897. matrix_nginx_proxy_proxy_matrix_client_api_client_max_body_size_mb: |-
  1898. {{
  1899. {
  1900. 'synapse': matrix_synapse_max_upload_size_mb,
  1901. 'dendrite': (matrix_dendrite_max_file_size_bytes / 1024 / 1024) | round,
  1902. 'conduit': (matrix_conduit_max_request_size / 1024 / 1024) | round,
  1903. }[matrix_homeserver_implementation]|int
  1904. }}
  1905. matrix_nginx_proxy_proxy_matrix_client_api_forwarded_location_synapse_admin_api_enabled: "{{ matrix_synapse_admin_enabled or matrix_bot_matrix_registration_bot_enabled }}"
  1906. matrix_nginx_proxy_proxy_matrix_client_redirect_root_uri_to_domain: "{{ matrix_server_fqn_element if matrix_client_element_enabled else '' }}"
  1907. matrix_nginx_proxy_proxy_matrix_enabled: true
  1908. matrix_nginx_proxy_proxy_element_enabled: "{{ matrix_client_element_enabled }}"
  1909. matrix_nginx_proxy_proxy_hydrogen_enabled: "{{ matrix_client_hydrogen_enabled }}"
  1910. matrix_nginx_proxy_proxy_cinny_enabled: "{{ matrix_client_cinny_enabled }}"
  1911. matrix_nginx_proxy_proxy_buscarron_enabled: "{{ matrix_bot_buscarron_enabled }}"
  1912. matrix_nginx_proxy_proxy_dimension_enabled: "{{ matrix_dimension_enabled }}"
  1913. matrix_nginx_proxy_proxy_etherpad_enabled: "{{ matrix_etherpad_enabled and matrix_etherpad_mode == 'standalone' }}"
  1914. matrix_nginx_proxy_proxy_bot_go_neb_enabled: "{{ matrix_bot_go_neb_enabled }}"
  1915. matrix_nginx_proxy_proxy_jitsi_enabled: "{{ matrix_jitsi_enabled }}"
  1916. matrix_nginx_proxy_proxy_jitsi_manage_wellknown: "{{ matrix_jitsi_require_well_known }}"
  1917. matrix_nginx_proxy_proxy_grafana_enabled: "{{ matrix_grafana_enabled }}"
  1918. matrix_nginx_proxy_proxy_sygnal_enabled: "{{ matrix_sygnal_enabled }}"
  1919. matrix_nginx_proxy_proxy_ntfy_enabled: "{{ matrix_ntfy_enabled }}"
  1920. matrix_nginx_proxy_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
  1921. matrix_nginx_proxy_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  1922. matrix_nginx_proxy_container_labels_traefik_entrypoints: "{{ devture_traefik_entrypoint_primary }}"
  1923. matrix_nginx_proxy_container_labels_traefik_proxy_matrix_enabled: true
  1924. matrix_nginx_proxy_container_labels_traefik_proxy_element_enabled: "{{ matrix_client_element_enabled }}"
  1925. matrix_nginx_proxy_container_labels_traefik_proxy_hydrogen_enabled: "{{ matrix_client_hydrogen_enabled }}"
  1926. matrix_nginx_proxy_container_labels_traefik_proxy_cinny_enabled: "{{ matrix_client_cinny_enabled }}"
  1927. matrix_nginx_proxy_container_labels_traefik_proxy_buscarron_enabled: "{{ matrix_bot_buscarron_enabled }}"
  1928. matrix_nginx_proxy_container_labels_traefik_proxy_dimension_enabled: "{{ matrix_dimension_enabled }}"
  1929. matrix_nginx_proxy_container_labels_traefik_proxy_etherpad_enabled: "{{ matrix_etherpad_enabled and matrix_etherpad_mode == 'standalone' }}"
  1930. matrix_nginx_proxy_container_labels_traefik_proxy_bot_go_neb_enabled: "{{ matrix_bot_go_neb_enabled }}"
  1931. matrix_nginx_proxy_container_labels_traefik_proxy_jitsi_enabled: "{{ matrix_jitsi_enabled }}"
  1932. matrix_nginx_proxy_container_labels_traefik_proxy_grafana_enabled: "{{ matrix_grafana_enabled }}"
  1933. matrix_nginx_proxy_container_labels_traefik_proxy_sygnal_enabled: "{{ matrix_sygnal_enabled }}"
  1934. matrix_nginx_proxy_container_labels_traefik_proxy_ntfy_enabled: "{{ matrix_ntfy_enabled }}"
  1935. matrix_nginx_proxy_proxy_matrix_corporal_api_enabled: "{{ matrix_corporal_enabled and matrix_corporal_http_api_enabled }}"
  1936. matrix_nginx_proxy_proxy_matrix_corporal_api_addr_with_container: "matrix-corporal:41081"
  1937. matrix_nginx_proxy_proxy_matrix_corporal_api_addr_sans_container: "127.0.0.1:41081"
  1938. matrix_nginx_proxy_proxy_matrix_identity_api_enabled: "{{ matrix_ma1sd_enabled }}"
  1939. matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container: "matrix-ma1sd:{{ matrix_ma1sd_container_port }}"
  1940. matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container: "127.0.0.1:{{ matrix_ma1sd_container_port }}"
  1941. # By default, we do TLS termination for the Matrix Federation API (port 8448) at matrix-nginx-proxy.
  1942. # Unless this is handled there OR Synapse's federation listener port is disabled, we'll reverse-proxy.
  1943. matrix_nginx_proxy_proxy_matrix_federation_api_enabled: |-
  1944. {{
  1945. {
  1946. 'synapse': (matrix_synapse_federation_port_enabled and not matrix_synapse_tls_federation_listener_enabled),
  1947. 'dendrite': matrix_dendrite_federation_enabled,
  1948. 'conduit': matrix_conduit_allow_federation,
  1949. }[matrix_homeserver_implementation]|bool
  1950. }}
  1951. matrix_nginx_proxy_proxy_matrix_federation_api_addr_with_container: "matrix-nginx-proxy:12088"
  1952. matrix_nginx_proxy_proxy_matrix_federation_api_addr_sans_container: "127.0.0.1:12088"
  1953. matrix_nginx_proxy_proxy_synapse_enabled: "{{ matrix_synapse_enabled }}"
  1954. matrix_nginx_proxy_proxy_synapse_client_api_addr_with_container: "{{ 'matrix-synapse-reverse-proxy-companion:8008' if matrix_synapse_reverse_proxy_companion_enabled else 'matrix-synapse:8008' }}"
  1955. matrix_nginx_proxy_proxy_synapse_client_api_addr_sans_container: "127.0.0.1:8008"
  1956. matrix_nginx_proxy_proxy_synapse_federation_api_addr_with_container: "{{ 'matrix-synapse-reverse-proxy-companion:8048' if matrix_synapse_reverse_proxy_companion_enabled else 'matrix-synapse:8048' }}"
  1957. matrix_nginx_proxy_proxy_synapse_federation_api_addr_sans_container: "127.0.0.1:8048"
  1958. matrix_nginx_proxy_proxy_dendrite_enabled: "{{ matrix_dendrite_enabled }}"
  1959. matrix_nginx_proxy_proxy_dendrite_client_api_addr_with_container: "matrix-dendrite:{{ matrix_dendrite_http_bind_port | string }}"
  1960. matrix_nginx_proxy_proxy_dendrite_client_api_addr_sans_container: "127.0.0.1:{{ matrix_dendrite_http_bind_port | string }}"
  1961. matrix_nginx_proxy_proxy_dendrite_federation_api_addr_with_container: "matrix-dendrite:{{ matrix_dendrite_http_bind_port | string }}"
  1962. matrix_nginx_proxy_proxy_dendrite_federation_api_addr_sans_container: "127.0.0.1:{{ matrix_dendrite_http_bind_port | string }}"
  1963. matrix_nginx_proxy_proxy_conduit_enabled: "{{ matrix_conduit_enabled }}"
  1964. matrix_nginx_proxy_proxy_conduit_client_api_addr_with_container: "matrix-conduit:{{ matrix_conduit_port_number|string }}"
  1965. matrix_nginx_proxy_proxy_conduit_client_api_addr_sans_container: "127.0.0.1:{{ matrix_conduit_port_number|string }}"
  1966. matrix_nginx_proxy_proxy_conduit_federation_api_addr_with_container: "matrix-conduit:{{ matrix_conduit_port_number|string }}"
  1967. matrix_nginx_proxy_proxy_conduit_federation_api_addr_sans_container: "127.0.0.1:{{ matrix_conduit_port_number|string }}"
  1968. # When matrix-nginx-proxy is disabled, the actual port number that the vhost uses may begin to matter.
  1969. matrix_nginx_proxy_proxy_matrix_federation_port: "{{ matrix_federation_public_port }}"
  1970. matrix_nginx_proxy_proxy_matrix_user_directory_search_enabled: "{{ matrix_ma1sd_enabled }}"
  1971. matrix_nginx_proxy_proxy_matrix_user_directory_search_addr_with_container: "{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container }}"
  1972. matrix_nginx_proxy_proxy_matrix_user_directory_search_addr_sans_container: "{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container }}"
  1973. matrix_nginx_proxy_self_check_validate_certificates: "{{ false if matrix_playbook_ssl_retrieval_method == 'self-signed' else true }}"
  1974. # OCSP stapling does not make sense when self-signed certificates are used.
  1975. # See https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/1073
  1976. # and https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/1074
  1977. matrix_nginx_proxy_ocsp_stapling_enabled: "{{ matrix_playbook_ssl_retrieval_method != 'self-signed' }}"
  1978. matrix_nginx_proxy_systemd_wanted_services_list: |
  1979. {{
  1980. ['matrix-' + matrix_homeserver_implementation + '.service']
  1981. +
  1982. (matrix_synapse_webserving_workers_systemd_services_list if matrix_homeserver_implementation == 'synapse' and matrix_synapse_workers_enabled else [])
  1983. +
  1984. (['matrix-synapse-reverse-proxy-companion.service'] if matrix_synapse_reverse_proxy_companion_enabled else [])
  1985. +
  1986. (['matrix-corporal.service'] if matrix_corporal_enabled else [])
  1987. +
  1988. (['matrix-ma1sd.service'] if matrix_ma1sd_enabled else [])
  1989. +
  1990. (['matrix-client-cinny.service'] if matrix_client_cinny_enabled else [])
  1991. +
  1992. (['matrix-bot-buscarron.service'] if matrix_bot_buscarron_enabled else [])
  1993. +
  1994. (['matrix-client-element.service'] if matrix_client_element_enabled else [])
  1995. +
  1996. (['matrix-client-hydrogen.service'] if matrix_client_hydrogen_enabled else [])
  1997. +
  1998. (['matrix-grafana.service'] if matrix_grafana_enabled else [])
  1999. +
  2000. (['matrix-dimension.service'] if matrix_dimension_enabled else [])
  2001. +
  2002. (['matrix-sygnal.service'] if matrix_sygnal_enabled else [])
  2003. +
  2004. (['matrix-ntfy.service'] if matrix_ntfy_enabled else [])
  2005. +
  2006. (['matrix-jitsi.service'] if matrix_jitsi_enabled else [])
  2007. +
  2008. (['matrix-bot-go-neb.service'] if matrix_bot_go_neb_enabled else [])
  2009. +
  2010. (['matrix-etherpad.service'] if matrix_etherpad_enabled else [])
  2011. +
  2012. (['matrix-hookshot.service'] if matrix_hookshot_enabled else [])
  2013. }}
  2014. matrix_ssl_domains_to_obtain_certificates_for: |
  2015. {{
  2016. ([matrix_server_fqn_matrix])
  2017. +
  2018. ([matrix_server_fqn_element] if matrix_client_element_enabled else [])
  2019. +
  2020. ([matrix_nginx_proxy_proxy_riot_compat_redirect_hostname] if matrix_nginx_proxy_proxy_riot_compat_redirect_enabled else [])
  2021. +
  2022. ([matrix_server_fqn_hydrogen] if matrix_client_hydrogen_enabled else [])
  2023. +
  2024. ([matrix_server_fqn_cinny] if matrix_client_cinny_enabled else [])
  2025. +
  2026. ([matrix_server_fqn_buscarron] if matrix_bot_buscarron_enabled else [])
  2027. +
  2028. ([matrix_server_fqn_dimension] if matrix_dimension_enabled else [])
  2029. +
  2030. ([matrix_server_fqn_etherpad] if (matrix_etherpad_enabled and matrix_etherpad_mode == 'standalone') else [])
  2031. +
  2032. ([matrix_server_fqn_bot_go_neb] if matrix_bot_go_neb_enabled else [])
  2033. +
  2034. ([matrix_server_fqn_jitsi] if matrix_jitsi_enabled else [])
  2035. +
  2036. ([matrix_server_fqn_grafana] if matrix_grafana_enabled else [])
  2037. +
  2038. ([matrix_server_fqn_sygnal] if matrix_sygnal_enabled else [])
  2039. +
  2040. ([matrix_server_fqn_ntfy] if matrix_ntfy_enabled else [])
  2041. +
  2042. (matrix_bot_postmoogle_domains if matrix_bot_postmoogle_enabled else [])
  2043. +
  2044. ([matrix_domain] if matrix_nginx_proxy_base_domain_serving_enabled else [])
  2045. +
  2046. matrix_ssl_additional_domains_to_obtain_certificates_for
  2047. }}
  2048. matrix_ssl_architecture: "{{
  2049. {
  2050. 'amd64': 'amd64',
  2051. 'arm32': 'arm32v6',
  2052. 'arm64': 'arm64v8',
  2053. }[matrix_architecture]
  2054. }}"
  2055. matrix_ssl_pre_obtaining_required_service_name: "{{ 'matrix-dynamic-dns' if matrix_dynamic_dns_enabled else '' }}"
  2056. matrix_nginx_proxy_access_log_syslog_integration_enabled: "{{ matrix_prometheus_nginxlog_exporter_enabled }}"
  2057. matrix_nginx_proxy_access_log_syslog_integration_server_port: "{{ (matrix_prometheus_nginxlog_exporter_container_hostname | string +':'+ matrix_prometheus_nginxlog_exporter_container_syslog_port | string) | default('') }}"
  2058. ######################################################################
  2059. #
  2060. # /matrix-nginx-proxy
  2061. #
  2062. ######################################################################
  2063. ########################################################################
  2064. # #
  2065. # com.devture.ansible.role.postgres #
  2066. # #
  2067. ########################################################################
  2068. # To completely disable installing Postgres, use `devture_postgres_enabled: false`.
  2069. devture_postgres_identifier: matrix-postgres
  2070. devture_postgres_architecture: "{{ matrix_architecture }}"
  2071. devture_postgres_base_path: "{{ matrix_base_data_path }}/postgres"
  2072. devture_postgres_container_network: "{{ matrix_docker_network }}"
  2073. devture_postgres_uid: "{{ matrix_user_uid }}"
  2074. devture_postgres_gid: "{{ matrix_user_gid }}"
  2075. devture_postgres_connection_username: matrix
  2076. devture_postgres_db_name: matrix
  2077. devture_postgres_systemd_services_to_stop_for_maintenance_list: |
  2078. {{
  2079. ['matrix-' + matrix_homeserver_implementation + '.service']
  2080. }}
  2081. devture_postgres_managed_databases_auto: |
  2082. {{
  2083. ([{
  2084. 'name': matrix_synapse_database_database,
  2085. 'username': matrix_synapse_database_user,
  2086. 'password': matrix_synapse_database_password,
  2087. }] if (matrix_synapse_enabled and matrix_synapse_database_host == devture_postgres_connection_hostname) else [])
  2088. +
  2089. ([{
  2090. 'name': matrix_dendrite_federationapi_database,
  2091. 'username': matrix_dendrite_database_user,
  2092. 'password': matrix_dendrite_database_password,
  2093. },{
  2094. 'name': matrix_dendrite_keyserver_database,
  2095. 'username': matrix_dendrite_database_user,
  2096. 'password': matrix_dendrite_database_password,
  2097. },{
  2098. 'name': matrix_dendrite_mediaapi_database,
  2099. 'username': matrix_dendrite_database_user,
  2100. 'password': matrix_dendrite_database_password,
  2101. },{
  2102. 'name': matrix_dendrite_room_database,
  2103. 'username': matrix_dendrite_database_user,
  2104. 'password': matrix_dendrite_database_password,
  2105. },{
  2106. 'name': matrix_dendrite_syncapi_database,
  2107. 'username': matrix_dendrite_database_user,
  2108. 'password': matrix_dendrite_database_password,
  2109. },{
  2110. 'name': matrix_dendrite_userapi_database,
  2111. 'username': matrix_dendrite_database_user,
  2112. 'password': matrix_dendrite_database_password,
  2113. },{
  2114. 'name': matrix_dendrite_pushserver_database,
  2115. 'username': matrix_dendrite_database_user,
  2116. 'password': matrix_dendrite_database_password,
  2117. },{
  2118. 'name': matrix_dendrite_mscs_database,
  2119. 'username': matrix_dendrite_database_user,
  2120. 'password': matrix_dendrite_database_password,
  2121. }] if (matrix_dendrite_enabled and matrix_dendrite_database_hostname == devture_postgres_connection_hostname) else [])
  2122. +
  2123. ([{
  2124. 'name': matrix_ma1sd_database_name,
  2125. 'username': matrix_ma1sd_database_username,
  2126. 'password': matrix_ma1sd_database_password,
  2127. }] if (matrix_ma1sd_enabled and matrix_ma1sd_database_engine == 'postgres' and matrix_ma1sd_database_hostname == devture_postgres_connection_hostname) else [])
  2128. +
  2129. ([{
  2130. 'name': matrix_bot_matrix_reminder_bot_database_name,
  2131. 'username': matrix_bot_matrix_reminder_bot_database_username,
  2132. 'password': matrix_bot_matrix_reminder_bot_database_password,
  2133. }] if (matrix_bot_matrix_reminder_bot_enabled and matrix_bot_matrix_reminder_bot_database_engine == 'postgres' and matrix_bot_matrix_reminder_bot_database_hostname == devture_postgres_connection_hostname) else [])
  2134. +
  2135. ([{
  2136. 'name': matrix_bot_honoroit_database_name,
  2137. 'username': matrix_bot_honoroit_database_username,
  2138. 'password': matrix_bot_honoroit_database_password,
  2139. }] if (matrix_bot_honoroit_enabled and matrix_bot_honoroit_database_engine == 'postgres' and matrix_bot_honoroit_database_hostname == devture_postgres_connection_hostname) else [])
  2140. +
  2141. ([{
  2142. 'name': matrix_bot_postmoogle_database_name,
  2143. 'username': matrix_bot_postmoogle_database_username,
  2144. 'password': matrix_bot_postmoogle_database_password,
  2145. }] if (matrix_bot_postmoogle_enabled and matrix_bot_postmoogle_database_engine == 'postgres' and matrix_bot_postmoogle_database_hostname == devture_postgres_connection_hostname) else [])
  2146. +
  2147. ([{
  2148. 'name': matrix_bot_maubot_database_name,
  2149. 'username': matrix_bot_maubot_database_username,
  2150. 'password': matrix_bot_maubot_database_password,
  2151. }] if (matrix_bot_maubot_enabled and matrix_bot_maubot_database_engine == 'postgres' and matrix_bot_maubot_database_hostname == devture_postgres_connection_hostname) else [])
  2152. +
  2153. ([{
  2154. 'name': matrix_bot_buscarron_database_name,
  2155. 'username': matrix_bot_buscarron_database_username,
  2156. 'password': matrix_bot_buscarron_database_password,
  2157. }] if (matrix_bot_buscarron_enabled and matrix_bot_buscarron_database_engine == 'postgres' and matrix_bot_buscarron_database_hostname == devture_postgres_connection_hostname) else [])
  2158. +
  2159. ([{
  2160. 'name': matrix_registration_database_name,
  2161. 'username': matrix_registration_database_username,
  2162. 'password': matrix_registration_database_password,
  2163. }] if (matrix_registration_enabled and matrix_registration_database_engine == 'postgres' and matrix_registration_database_hostname == devture_postgres_connection_hostname) else [])
  2164. +
  2165. ([{
  2166. 'name': matrix_appservice_discord_database_name,
  2167. 'username': matrix_appservice_discord_database_username,
  2168. 'password': matrix_appservice_discord_database_password,
  2169. }] if (matrix_appservice_discord_enabled and matrix_appservice_discord_database_engine == 'postgres' and matrix_appservice_discord_database_hostname == devture_postgres_connection_hostname) else [])
  2170. +
  2171. ([{
  2172. 'name': matrix_appservice_slack_database_name,
  2173. 'username': matrix_appservice_slack_database_username,
  2174. 'password': matrix_appservice_slack_database_password,
  2175. }] if (matrix_appservice_slack_enabled and matrix_appservice_slack_database_engine == 'postgres' and matrix_appservice_slack_database_hostname == devture_postgres_connection_hostname) else [])
  2176. +
  2177. ([{
  2178. 'name': matrix_appservice_irc_database_name,
  2179. 'username': matrix_appservice_irc_database_username,
  2180. 'password': matrix_appservice_irc_database_password,
  2181. }] if (matrix_appservice_irc_enabled and matrix_appservice_irc_database_engine == 'postgres' and matrix_appservice_irc_database_hostname == devture_postgres_connection_hostname) else [])
  2182. +
  2183. ([{
  2184. 'name': matrix_appservice_kakaotalk_database_name,
  2185. 'username': matrix_appservice_kakaotalk_database_username,
  2186. 'password': matrix_appservice_kakaotalk_database_password,
  2187. }] if (matrix_appservice_kakaotalk_enabled and matrix_appservice_kakaotalk_database_engine == 'postgres' and matrix_appservice_kakaotalk_database_hostname == devture_postgres_connection_hostname) else [])
  2188. +
  2189. ([{
  2190. 'name': matrix_beeper_linkedin_database_name,
  2191. 'username': matrix_beeper_linkedin_database_username,
  2192. 'password': matrix_beeper_linkedin_database_password,
  2193. }] if (matrix_beeper_linkedin_enabled and matrix_beeper_linkedin_database_engine == 'postgres' and matrix_beeper_linkedin_database_hostname == devture_postgres_connection_hostname) else [])
  2194. +
  2195. ([{
  2196. 'name': matrix_go_skype_bridge_database_name,
  2197. 'username': matrix_go_skype_bridge_database_username,
  2198. 'password': matrix_go_skype_bridge_database_password,
  2199. }] if (matrix_go_skype_bridge_enabled and matrix_go_skype_bridge_database_engine == 'postgres' and matrix_go_skype_bridge_database_hostname == devture_postgres_connection_hostname) else [])
  2200. +
  2201. ([{
  2202. 'name': matrix_mautrix_facebook_database_name,
  2203. 'username': matrix_mautrix_facebook_database_username,
  2204. 'password': matrix_mautrix_facebook_database_password,
  2205. }] if (matrix_mautrix_facebook_enabled and matrix_mautrix_facebook_database_engine == 'postgres' and matrix_mautrix_facebook_database_hostname == devture_postgres_connection_hostname) else [])
  2206. +
  2207. ([{
  2208. 'name': matrix_mautrix_hangouts_database_name,
  2209. 'username': matrix_mautrix_hangouts_database_username,
  2210. 'password': matrix_mautrix_hangouts_database_password,
  2211. }] if (matrix_mautrix_hangouts_enabled and matrix_mautrix_hangouts_database_engine == 'postgres' and matrix_mautrix_hangouts_database_hostname == devture_postgres_connection_hostname) else [])
  2212. +
  2213. ([{
  2214. 'name': matrix_mautrix_googlechat_database_name,
  2215. 'username': matrix_mautrix_googlechat_database_username,
  2216. 'password': matrix_mautrix_googlechat_database_password,
  2217. }] if (matrix_mautrix_googlechat_enabled and matrix_mautrix_googlechat_database_engine == 'postgres' and matrix_mautrix_googlechat_database_hostname == devture_postgres_connection_hostname) else [])
  2218. +
  2219. ([{
  2220. 'name': matrix_mautrix_instagram_database_name,
  2221. 'username': matrix_mautrix_instagram_database_username,
  2222. 'password': matrix_mautrix_instagram_database_password,
  2223. }] if (matrix_mautrix_instagram_enabled and matrix_mautrix_instagram_database_engine == 'postgres' and matrix_mautrix_instagram_database_hostname == devture_postgres_connection_hostname) else [])
  2224. +
  2225. ([{
  2226. 'name': matrix_mautrix_signal_database_name,
  2227. 'username': matrix_mautrix_signal_database_username,
  2228. 'password': matrix_mautrix_signal_database_password,
  2229. }] if (matrix_mautrix_signal_enabled and matrix_mautrix_signal_database_engine == 'postgres' and matrix_mautrix_signal_database_hostname == devture_postgres_connection_hostname) else [])
  2230. +
  2231. ([{
  2232. 'name': matrix_mautrix_telegram_database_name,
  2233. 'username': matrix_mautrix_telegram_database_username,
  2234. 'password': matrix_mautrix_telegram_database_password,
  2235. }] if (matrix_mautrix_telegram_enabled and matrix_mautrix_telegram_database_engine == 'postgres' and matrix_mautrix_telegram_database_hostname == devture_postgres_connection_hostname) else [])
  2236. +
  2237. ([{
  2238. 'name': matrix_mautrix_twitter_database_name,
  2239. 'username': matrix_mautrix_twitter_database_username,
  2240. 'password': matrix_mautrix_twitter_database_password,
  2241. }] if (matrix_mautrix_twitter_enabled and matrix_mautrix_twitter_database_engine == 'postgres' and matrix_mautrix_twitter_database_hostname == devture_postgres_connection_hostname) else [])
  2242. +
  2243. ([{
  2244. 'name': matrix_mautrix_whatsapp_database_name,
  2245. 'username': matrix_mautrix_whatsapp_database_username,
  2246. 'password': matrix_mautrix_whatsapp_database_password,
  2247. }] if (matrix_mautrix_whatsapp_enabled and matrix_mautrix_whatsapp_database_engine == 'postgres' and matrix_mautrix_whatsapp_database_hostname == devture_postgres_connection_hostname) else [])
  2248. +
  2249. ([{
  2250. 'name': matrix_mautrix_discord_database_name,
  2251. 'username': matrix_mautrix_discord_database_username,
  2252. 'password': matrix_mautrix_discord_database_password,
  2253. }] if (matrix_mautrix_discord_enabled and matrix_mautrix_discord_database_engine == 'postgres' and matrix_mautrix_discord_database_hostname == devture_postgres_connection_hostname) else [])
  2254. +
  2255. ([{
  2256. 'name': matrix_mautrix_slack_database_name,
  2257. 'username': matrix_mautrix_slack_database_username,
  2258. 'password': matrix_mautrix_slack_database_password,
  2259. }] if (matrix_mautrix_slack_enabled and matrix_mautrix_slack_database_engine == 'postgres' and matrix_mautrix_slack_database_hostname == devture_postgres_connection_hostname) else [])
  2260. +
  2261. ([{
  2262. 'name': matrix_mx_puppet_slack_database_name,
  2263. 'username': matrix_mx_puppet_slack_database_username,
  2264. 'password': matrix_mx_puppet_slack_database_password,
  2265. }] if (matrix_mx_puppet_slack_enabled and matrix_mx_puppet_slack_database_engine == 'postgres' and matrix_mx_puppet_slack_database_hostname == devture_postgres_connection_hostname) else [])
  2266. +
  2267. ([{
  2268. 'name': matrix_mx_puppet_twitter_database_name,
  2269. 'username': matrix_mx_puppet_twitter_database_username,
  2270. 'password': matrix_mx_puppet_twitter_database_password,
  2271. }] if (matrix_mx_puppet_twitter_enabled and matrix_mx_puppet_twitter_database_engine == 'postgres' and matrix_mx_puppet_twitter_database_hostname == devture_postgres_connection_hostname) else [])
  2272. +
  2273. ([{
  2274. 'name': matrix_mx_puppet_instagram_database_name,
  2275. 'username': matrix_mx_puppet_instagram_database_username,
  2276. 'password': matrix_mx_puppet_instagram_database_password,
  2277. }] if (matrix_mx_puppet_instagram_enabled and matrix_mx_puppet_instagram_database_engine == 'postgres' and matrix_mx_puppet_instagram_database_hostname == devture_postgres_connection_hostname) else [])
  2278. +
  2279. ([{
  2280. 'name': matrix_mx_puppet_discord_database_name,
  2281. 'username': matrix_mx_puppet_discord_database_username,
  2282. 'password': matrix_mx_puppet_discord_database_password,
  2283. }] if (matrix_mx_puppet_discord_enabled and matrix_mx_puppet_discord_database_engine == 'postgres' and matrix_mx_puppet_discord_database_hostname == devture_postgres_connection_hostname) else [])
  2284. +
  2285. ([{
  2286. 'name': matrix_mx_puppet_steam_database_name,
  2287. 'username': matrix_mx_puppet_steam_database_username,
  2288. 'password': matrix_mx_puppet_steam_database_password,
  2289. }] if (matrix_mx_puppet_steam_enabled and matrix_mx_puppet_steam_database_engine == 'postgres' and matrix_mx_puppet_steam_database_hostname == devture_postgres_connection_hostname) else [])
  2290. +
  2291. ([{
  2292. 'name': matrix_mx_puppet_groupme_database_name,
  2293. 'username': matrix_mx_puppet_groupme_database_username,
  2294. 'password': matrix_mx_puppet_groupme_database_password,
  2295. }] if (matrix_mx_puppet_groupme_enabled and matrix_mx_puppet_groupme_database_engine == 'postgres' and matrix_mx_puppet_groupme_database_hostname == devture_postgres_connection_hostname) else [])
  2296. +
  2297. ([{
  2298. 'name': matrix_dimension_database_name,
  2299. 'username': matrix_dimension_database_username,
  2300. 'password': matrix_dimension_database_password,
  2301. }] if (matrix_dimension_enabled and matrix_dimension_database_engine == 'postgres' and matrix_dimension_database_hostname == devture_postgres_connection_hostname) else [])
  2302. +
  2303. ([{
  2304. 'name': matrix_etherpad_database_name,
  2305. 'username': matrix_etherpad_database_username,
  2306. 'password': matrix_etherpad_database_password,
  2307. }] if (matrix_etherpad_enabled and matrix_etherpad_database_engine == 'postgres' and matrix_etherpad_database_hostname == devture_postgres_connection_hostname) else [])
  2308. +
  2309. ([{
  2310. 'name': prometheus_postgres_exporter_database_name,
  2311. 'username': prometheus_postgres_exporter_database_username,
  2312. 'password': prometheus_postgres_exporter_database_password,
  2313. }] if (prometheus_postgres_exporter_enabled and prometheus_postgres_exporter_database_hostname == devture_postgres_connection_hostname) else [])
  2314. }}
  2315. ########################################################################
  2316. # #
  2317. # /com.devture.ansible.role.postgres #
  2318. # #
  2319. ########################################################################
  2320. ########################################################################
  2321. # #
  2322. # com.devture.ansible.role.postgres_backup #
  2323. # #
  2324. ########################################################################
  2325. devture_postgres_backup_enabled: false
  2326. devture_postgres_backup_identifier: matrix-postgres-backup
  2327. devture_postgres_backup_architecture: "{{ matrix_architecture }}"
  2328. devture_postgres_backup_base_path: "{{ matrix_base_data_path }}/postgres-backup"
  2329. devture_postgres_backup_systemd_required_services_list: |
  2330. {{
  2331. (['docker.service'])
  2332. +
  2333. ([(devture_postgres_identifier + '.service')] if devture_postgres_enabled else [])
  2334. }}
  2335. devture_postgres_backup_container_network: "{{ matrix_docker_network }}"
  2336. devture_postgres_backup_uid: "{{ matrix_user_uid }}"
  2337. devture_postgres_backup_gid: "{{ matrix_user_gid }}"
  2338. devture_postgres_backup_connection_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  2339. devture_postgres_backup_connection_port: "{{ devture_postgres_connection_port if devture_postgres_enabled else 5432 }}"
  2340. devture_postgres_backup_connection_username: "{{ devture_postgres_connection_username if devture_postgres_enabled else '' }}"
  2341. devture_postgres_backup_connection_password: "{{ devture_postgres_connection_password if devture_postgres_enabled else '' }}"
  2342. devture_postgres_backup_postgres_data_path: "{{ devture_postgres_data_path if devture_postgres_enabled else '' }}"
  2343. devture_postgres_backup_databases: "{{ devture_postgres_managed_databases | map(attribute='name') if devture_postgres_enabled else [] }}"
  2344. ########################################################################
  2345. # #
  2346. # /com.devture.ansible.role.postgres_backup #
  2347. # #
  2348. ########################################################################
  2349. ######################################################################
  2350. #
  2351. # matrix-sygnal
  2352. #
  2353. ######################################################################
  2354. # Most people don't need their own push-server, because they also need their own app to utilize it from.
  2355. matrix_sygnal_enabled: false
  2356. # If someone instals Prometheus via the playbook, they most likely wish to monitor Sygnal.
  2357. matrix_sygnal_metrics_prometheus_enabled: "{{ matrix_prometheus_enabled }}"
  2358. matrix_sygnal_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':6000') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2359. ######################################################################
  2360. #
  2361. # /matrix-sygnal
  2362. #
  2363. ######################################################################
  2364. ######################################################################
  2365. #
  2366. # matrix-ntfy
  2367. #
  2368. ######################################################################
  2369. matrix_ntfy_enabled: false
  2370. matrix_ntfy_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':2586') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2371. ######################################################################
  2372. #
  2373. # /matrix-ntfy
  2374. #
  2375. ######################################################################
  2376. ######################################################################
  2377. #
  2378. # matrix-redis
  2379. #
  2380. ######################################################################
  2381. matrix_redis_enabled: "{{ matrix_synapse_workers_enabled }}"
  2382. ######################################################################
  2383. #
  2384. # /matrix-redis
  2385. #
  2386. ######################################################################
  2387. ######################################################################
  2388. #
  2389. # matrix-client-element
  2390. #
  2391. ######################################################################
  2392. # By default, this playbook installs the Element web UI on the `matrix_server_fqn_element` domain.
  2393. # If you wish to connect to your Matrix server by other means, you may wish to disable this.
  2394. matrix_client_element_enabled: true
  2395. matrix_client_element_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  2396. # Normally, matrix-nginx-proxy is enabled and nginx can reach Element over the container network.
  2397. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  2398. # the Element HTTP port to the local host.
  2399. 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 '' }}"
  2400. matrix_client_element_default_hs_url: "{{ matrix_homeserver_url }}"
  2401. matrix_client_element_default_is_url: "{{ matrix_identity_server_url }}"
  2402. # Use Dimension if enabled, otherwise fall back to Scalar
  2403. matrix_client_element_integrations_ui_url: "{{ matrix_dimension_integrations_ui_url if matrix_dimension_enabled else 'https://scalar.vector.im/' }}"
  2404. matrix_client_element_integrations_rest_url: "{{ matrix_dimension_integrations_rest_url if matrix_dimension_enabled else 'https://scalar.vector.im/api' }}"
  2405. matrix_client_element_integrations_widgets_urls: "{{ matrix_dimension_integrations_widgets_urls if matrix_dimension_enabled else ['https://scalar.vector.im/api'] }}"
  2406. 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' }}"
  2407. matrix_client_element_self_check_validate_certificates: "{{ false if matrix_playbook_ssl_retrieval_method == 'self-signed' else true }}"
  2408. matrix_client_element_registration_enabled: "{{ matrix_synapse_enable_registration }}"
  2409. matrix_client_element_enable_presence_by_hs_url: |
  2410. {{
  2411. none
  2412. if matrix_synapse_presence_enabled
  2413. else {matrix_client_element_default_hs_url: false}
  2414. }}
  2415. matrix_client_element_welcome_user_id: ~
  2416. matrix_client_element_jitsi_preferredDomain: "{{ matrix_server_fqn_jitsi if matrix_jitsi_enabled else '' }}"
  2417. ######################################################################
  2418. #
  2419. # /matrix-client-element
  2420. #
  2421. ######################################################################
  2422. ######################################################################
  2423. #
  2424. # matrix-client-hydrogen
  2425. #
  2426. ######################################################################
  2427. matrix_client_hydrogen_enabled: false
  2428. matrix_client_hydrogen_container_image_self_build: "{{ matrix_architecture not in ['amd64'] }}"
  2429. # Normally, matrix-nginx-proxy is enabled and nginx can reach Hydrogen over the container network.
  2430. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  2431. # the HTTP port to the local host.
  2432. 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 '' }}"
  2433. matrix_client_hydrogen_default_hs_url: "{{ matrix_homeserver_url }}"
  2434. matrix_client_hydrogen_self_check_validate_certificates: "{{ false if matrix_playbook_ssl_retrieval_method == 'self-signed' else true }}"
  2435. ######################################################################
  2436. #
  2437. # /matrix-client-hydrogen
  2438. #
  2439. ######################################################################
  2440. ######################################################################
  2441. #
  2442. # matrix-client-cinny
  2443. #
  2444. ######################################################################
  2445. matrix_client_cinny_enabled: false
  2446. matrix_client_cinny_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  2447. # Normally, matrix-nginx-proxy is enabled and nginx can reach Cinny over the container network.
  2448. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  2449. # the HTTP port to the local host.
  2450. matrix_client_cinny_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':8080') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2451. matrix_client_cinny_default_hs_url: "{{ matrix_homeserver_url }}"
  2452. matrix_client_cinny_self_check_validate_certificates: "{{ false if matrix_playbook_ssl_retrieval_method == 'self-signed' else true }}"
  2453. ######################################################################
  2454. #
  2455. # /matrix-client-cinny
  2456. #
  2457. ######################################################################
  2458. ######################################################################
  2459. #
  2460. # matrix-synapse
  2461. #
  2462. ######################################################################
  2463. matrix_synapse_enabled: "{{ matrix_homeserver_implementation == 'synapse' }}"
  2464. matrix_synapse_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  2465. # When ma1sd is enabled, we can use it to validate phone numbers. It's something that the homeserver cannot do by itself.
  2466. matrix_synapse_account_threepid_delegates_msisdn: "{{ 'http://matrix-ma1sd:' + matrix_ma1sd_container_port | string if matrix_ma1sd_enabled else '' }}"
  2467. # For exposing the Matrix Federation API's TLS port (HTTPS) to the internet on all network interfaces.
  2468. 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 '' }}"
  2469. #
  2470. # For exposing the Synapse Metrics API's port (plain HTTP) to the local host.
  2471. 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 '' }}"
  2472. #
  2473. # For exposing the Synapse Manhole port (plain HTTP) to the local host.
  2474. 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 '' }}"
  2475. #
  2476. # For exposing the Synapse worker (and metrics) ports to the local host.
  2477. 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 '' }}"
  2478. matrix_synapse_database_host: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  2479. matrix_synapse_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'synapse.db', rounds=655555) | to_uuid }}"
  2480. matrix_synapse_macaroon_secret_key: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'synapse.mac', rounds=655555) | to_uuid }}"
  2481. # We do not enable TLS in Synapse by default.
  2482. # TLS is handled by the matrix-nginx-proxy, which proxies the requests to Synapse.
  2483. matrix_synapse_tls_federation_listener_enabled: false
  2484. matrix_synapse_tls_certificate_path: ~
  2485. matrix_synapse_tls_private_key_path: ~
  2486. matrix_synapse_federation_port_openid_resource_required: "{{ not matrix_synapse_federation_enabled and (matrix_dimension_enabled or matrix_ma1sd_enabled or matrix_user_verification_service_enabled) }}"
  2487. # If someone instals Prometheus via the playbook, they most likely wish to monitor Synapse.
  2488. matrix_synapse_metrics_enabled: "{{ matrix_prometheus_enabled }}"
  2489. matrix_synapse_email_enabled: "{{ matrix_mailer_enabled }}"
  2490. matrix_synapse_email_smtp_host: "matrix-mailer"
  2491. matrix_synapse_email_smtp_port: 8025
  2492. matrix_synapse_email_smtp_require_transport_security: false
  2493. matrix_synapse_email_notif_from: "Matrix <{{ matrix_mailer_sender_address }}>"
  2494. # Even if TURN doesn't support TLS (it does by default),
  2495. # it doesn't hurt to try a secure connection anyway.
  2496. #
  2497. # When Let's Encrypt certificates are used (the default case),
  2498. # we don't enable `turns` endpoints, because WebRTC in Element can't talk to them.
  2499. # Learn more here: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/1145
  2500. matrix_synapse_turn_uris: |
  2501. {{
  2502. []
  2503. +
  2504. [
  2505. 'turns:' + matrix_server_fqn_matrix + '?transport=udp',
  2506. 'turns:' + matrix_server_fqn_matrix + '?transport=tcp',
  2507. ] if matrix_coturn_enabled and matrix_coturn_tls_enabled and matrix_playbook_ssl_retrieval_method != 'lets-encrypt' else []
  2508. +
  2509. [
  2510. 'turn:' + matrix_server_fqn_matrix + '?transport=udp',
  2511. 'turn:' + matrix_server_fqn_matrix + '?transport=tcp',
  2512. ] if matrix_coturn_enabled else []
  2513. }}
  2514. matrix_synapse_turn_shared_secret: "{{ matrix_coturn_turn_static_auth_secret if matrix_coturn_enabled else '' }}"
  2515. matrix_synapse_self_check_validate_certificates: "{{ false if matrix_playbook_ssl_retrieval_method == 'self-signed' else true }}"
  2516. matrix_synapse_systemd_required_services_list: |
  2517. {{
  2518. (['docker.service'])
  2519. +
  2520. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  2521. +
  2522. (['matrix-goofys.service'] if matrix_s3_media_store_enabled else [])
  2523. }}
  2524. matrix_synapse_systemd_wanted_services_list: |
  2525. {{
  2526. (['matrix-coturn.service'] if matrix_coturn_enabled else [])
  2527. +
  2528. (['matrix-mailer.service'] if matrix_mailer_enabled else [])
  2529. }}
  2530. # Synapse workers (used for parallel load-scaling) need Redis for IPC.
  2531. matrix_synapse_redis_enabled: "{{ matrix_redis_enabled }}"
  2532. matrix_synapse_redis_host: "{{ 'matrix-redis' if matrix_redis_enabled else '' }}"
  2533. matrix_synapse_redis_password: "{{ matrix_redis_connection_password if matrix_redis_enabled else '' }}"
  2534. matrix_synapse_container_extra_arguments_auto: "{{ matrix_homeserver_container_extra_arguments_auto }}"
  2535. matrix_synapse_app_service_config_files_auto: "{{ matrix_homeserver_app_service_config_files_auto }}"
  2536. ######################################################################
  2537. #
  2538. # /matrix-synapse
  2539. #
  2540. ######################################################################
  2541. ######################################################################
  2542. #
  2543. # matrix-synapse-reverse-proxy-companion
  2544. #
  2545. ######################################################################
  2546. matrix_synapse_reverse_proxy_companion_enabled: "{{ matrix_synapse_enabled }}"
  2547. matrix_synapse_reverse_proxy_companion_client_api_client_max_body_size_mb: "{{ matrix_synapse_max_upload_size_mb }}"
  2548. 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 '' }}"
  2549. 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 '' }}"
  2550. matrix_synapse_reverse_proxy_companion_synapse_workers_enabled: "{{ matrix_synapse_workers_enabled }}"
  2551. matrix_synapse_reverse_proxy_companion_synapse_workers_list: "{{ matrix_synapse_workers_enabled_list }}"
  2552. matrix_synapse_reverse_proxy_companion_synapse_generic_worker_client_server_locations: "{{ matrix_synapse_workers_generic_worker_client_server_endpoints }}"
  2553. matrix_synapse_reverse_proxy_companion_synapse_generic_worker_federation_locations: "{{ matrix_synapse_workers_generic_worker_federation_endpoints }}"
  2554. 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 }}"
  2555. 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 }}"
  2556. 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 }}"
  2557. 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 }}"
  2558. 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 }}"
  2559. matrix_synapse_reverse_proxy_companion_synapse_media_repository_locations: "{{matrix_synapse_workers_media_repository_endpoints|default([]) }}"
  2560. matrix_synapse_reverse_proxy_companion_synapse_user_dir_locations: "{{ matrix_synapse_workers_user_dir_worker_client_server_endpoints|default([]) }}"
  2561. matrix_synapse_reverse_proxy_companion_access_log_syslog_integration_enabled: "{{ matrix_prometheus_nginxlog_exporter_enabled }}"
  2562. matrix_synapse_reverse_proxy_companion_access_log_syslog_integration_server_port: "{{ (matrix_prometheus_nginxlog_exporter_container_hostname | string +':'+ matrix_prometheus_nginxlog_exporter_container_syslog_port | string) | default('') }}"
  2563. ######################################################################
  2564. #
  2565. # /matrix-synapse-reverse-proxy-companion
  2566. #
  2567. ######################################################################
  2568. ######################################################################
  2569. #
  2570. # matrix-synapse-admin
  2571. #
  2572. ######################################################################
  2573. matrix_synapse_admin_enabled: false
  2574. # Normally, matrix-nginx-proxy is enabled and nginx can reach Synapse Admin over the container network.
  2575. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  2576. # Synapse Admin's HTTP port to the local host.
  2577. 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 '' }}"
  2578. matrix_synapse_admin_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}"
  2579. ######################################################################
  2580. #
  2581. # /matrix-synapse-admin
  2582. #
  2583. ######################################################################
  2584. ######################################################################
  2585. #
  2586. # etke/prometheus_node_exporter
  2587. #
  2588. ######################################################################
  2589. prometheus_node_exporter_enabled: false
  2590. prometheus_node_exporter_identifier: matrix-prometheus-node-exporter
  2591. prometheus_node_exporter_base_path: "{{ matrix_base_data_path }}/prometheus-node-exporter"
  2592. prometheus_node_exporter_uid: "{{ matrix_user_uid }}"
  2593. prometheus_node_exporter_gid: "{{ matrix_user_gid }}"
  2594. prometheus_node_exporter_server_fqn: "{{ matrix_server_fqn_matrix }}"
  2595. prometheus_node_exporter_container_network: "{{ matrix_docker_network }}"
  2596. prometheus_node_exporter_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [] }}"
  2597. prometheus_node_exporter_container_labels_traefik_enabled: false
  2598. prometheus_node_exporter_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2599. prometheus_node_exporter_container_labels_traefik_entrypoints: "{{ devture_traefik_entrypoint_primary }}"
  2600. ######################################################################
  2601. #
  2602. # /etke/prometheus_node_exporter
  2603. #
  2604. ######################################################################
  2605. ######################################################################
  2606. #
  2607. # etke/prometheus_postgres_exporter
  2608. #
  2609. ######################################################################
  2610. prometheus_postgres_exporter_enabled: false
  2611. prometheus_postgres_exporter_identifier: matrix-prometheus-postgres-exporter
  2612. prometheus_postgres_exporter_base_path: "{{ matrix_base_data_path }}/prometheus-postgres-exporter"
  2613. prometheus_postgres_exporter_uid: "{{ matrix_user_uid }}"
  2614. prometheus_postgres_exporter_gid: "{{ matrix_user_gid }}"
  2615. prometheus_postgres_exporter_server_fqn: "{{ matrix_server_fqn_matrix }}"
  2616. prometheus_postgres_exporter_container_network: "{{ matrix_docker_network }}"
  2617. prometheus_postgres_exporter_container_additional_networks: "{{ [matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [] }}"
  2618. prometheus_postgres_exporter_container_labels_traefik_enabled: false
  2619. prometheus_postgres_exporter_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
  2620. prometheus_postgres_exporter_container_labels_traefik_entrypoints: "{{ devture_traefik_entrypoint_primary }}"
  2621. prometheus_postgres_exporter_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  2622. prometheus_postgres_exporter_database_username: matrix_prometheus_postgres_exporter
  2623. prometheus_postgres_exporter_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'prometheus.pg.db', rounds=655555) | to_uuid }}"
  2624. prometheus_postgres_exporter_database_name: matrix_prometheus_postgres_exporter
  2625. prometheus_postgres_exporter_systemd_required_services_list: |
  2626. {{
  2627. ['docker.service']
  2628. +
  2629. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  2630. }}
  2631. ######################################################################
  2632. #
  2633. # /etke/prometheus_postgres_exporter
  2634. #
  2635. ######################################################################
  2636. ######################################################################
  2637. #
  2638. # matrix-prometheus-nginxlog-exporter
  2639. #
  2640. ######################################################################
  2641. matrix_prometheus_nginxlog_exporter_enabled: false
  2642. ######################################################################
  2643. #
  2644. # /matrix-prometheus-nginxlog-exporter
  2645. #
  2646. ######################################################################
  2647. ######################################################################
  2648. #
  2649. # matrix-prometheus
  2650. #
  2651. ######################################################################
  2652. matrix_prometheus_enabled: false
  2653. # Normally, matrix-nginx-proxy is enabled and nginx can reach Prometheus over the container network.
  2654. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  2655. # Prometheus' HTTP port to the local host.
  2656. matrix_prometheus_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':99090005') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2657. matrix_prometheus_scraper_synapse_enabled: "{{ matrix_synapse_enabled and matrix_synapse_metrics_enabled }}"
  2658. matrix_prometheus_scraper_synapse_targets: ['matrix-synapse:{{ matrix_synapse_metrics_port }}']
  2659. matrix_prometheus_scraper_synapse_workers_enabled_list: "{{ matrix_synapse_workers_enabled_list }}"
  2660. matrix_prometheus_scraper_synapse_rules_synapse_tag: "{{ matrix_synapse_docker_image_tag }}"
  2661. matrix_prometheus_scraper_node_enabled: "{{ prometheus_node_exporter_enabled }}"
  2662. matrix_prometheus_scraper_node_targets: "{{ [prometheus_node_exporter_identifier + ':9100'] if prometheus_node_exporter_enabled else [] }}"
  2663. matrix_prometheus_scraper_postgres_enabled: "{{ prometheus_postgres_exporter_enabled }}"
  2664. matrix_prometheus_scraper_postgres_targets: "{{ [prometheus_postgres_exporter_identifier + ':' + prometheus_postgres_exporter_port | string] if matrix_prometheus_scraper_postgres_enabled else [] }}"
  2665. matrix_prometheus_scraper_hookshot_enabled: "{{ matrix_hookshot_metrics_enabled|default(false) }}"
  2666. matrix_prometheus_scraper_hookshot_targets: "{{ [matrix_hookshot_container_url | string +':'+ matrix_hookshot_metrics_port | string] if matrix_hookshot_metrics_enabled else [] }}"
  2667. matrix_prometheus_scraper_nginxlog_enabled: "{{ matrix_prometheus_nginxlog_exporter_enabled }}"
  2668. matrix_prometheus_scraper_nginxlog_server_port: "{{ (matrix_prometheus_nginxlog_exporter_container_hostname | string +':'+ matrix_prometheus_nginxlog_exporter_container_metrics_port | string)
  2669. | default('') }}"
  2670. ######################################################################
  2671. #
  2672. # /matrix-prometheus
  2673. #
  2674. ######################################################################
  2675. ######################################################################
  2676. #
  2677. # matrix-grafana
  2678. #
  2679. ######################################################################
  2680. matrix_grafana_enabled: false
  2681. # Normally, matrix-nginx-proxy is enabled and nginx can reach Grafana over the container network.
  2682. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  2683. # Grafana's HTTP port to the local host.
  2684. matrix_grafana_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':3000') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2685. matrix_grafana_dashboard_download_urls: |
  2686. {{
  2687. (matrix_synapse_grafana_dashboard_urls if matrix_homeserver_implementation == 'synapse' and matrix_synapse_metrics_enabled else [])
  2688. +
  2689. (prometheus_node_exporter_dashboard_urls if prometheus_node_exporter_enabled else [])
  2690. +
  2691. (prometheus_postgres_exporter_dashboard_urls if prometheus_postgres_exporter_enabled else [])
  2692. +
  2693. (matrix_prometheus_nginxlog_exporter_dashboard_urls if matrix_prometheus_nginxlog_exporter_enabled else [])
  2694. }}
  2695. matrix_grafana_default_home_dashboard_path: |-
  2696. {{
  2697. {
  2698. 'synapse': ('/etc/grafana/dashboards/synapse.json' if matrix_synapse_metrics_enabled else '/etc/grafana/dashboards/node-exporter-full.json'),
  2699. 'dendrite': '/etc/grafana/dashboards/node-exporter-full.json',
  2700. 'conduit': '/etc/grafana/dashboards/node-exporter-full.json',
  2701. }[matrix_homeserver_implementation]
  2702. }}
  2703. ######################################################################
  2704. #
  2705. # /matrix-grafana
  2706. #
  2707. ######################################################################
  2708. ######################################################################
  2709. #
  2710. # matrix-registration
  2711. #
  2712. ######################################################################
  2713. matrix_registration_enabled: false
  2714. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-registration over the container network.
  2715. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  2716. # matrix-registration's HTTP port to the local host.
  2717. matrix_registration_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ ':8767') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
  2718. matrix_registration_riot_instance: "{{ ('https://' + matrix_server_fqn_element) if matrix_client_element_enabled else 'https://riot.im/app/' }}"
  2719. matrix_registration_shared_secret: |-
  2720. {{
  2721. {
  2722. 'synapse': matrix_synapse_registration_shared_secret,
  2723. 'dendrite': matrix_dendrite_client_api_registration_shared_secret,
  2724. 'conduit': '',
  2725. }[matrix_homeserver_implementation]
  2726. }}
  2727. matrix_registration_server_location: "{{ matrix_homeserver_container_url }}"
  2728. matrix_registration_api_validate_certs: "{{ false if matrix_playbook_ssl_retrieval_method == 'self-signed' else true }}"
  2729. matrix_registration_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  2730. matrix_registration_systemd_required_services_list: |
  2731. {{
  2732. ['docker.service']
  2733. +
  2734. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  2735. }}
  2736. # Postgres is the default, except if not using internal Postgres server
  2737. matrix_registration_database_engine: "{{ 'postgres' if devture_postgres_enabled else 'sqlite' }}"
  2738. matrix_registration_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  2739. matrix_registration_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'mx.registr.db', rounds=655555) | to_uuid }}"
  2740. ######################################################################
  2741. #
  2742. # /matrix-registration
  2743. #
  2744. ######################################################################
  2745. ######################################################################
  2746. #
  2747. # matrix-dendrite
  2748. #
  2749. ######################################################################
  2750. matrix_dendrite_enabled: "{{ matrix_homeserver_implementation == 'dendrite' }}"
  2751. # Normally, matrix-nginx-proxy is enabled and nginx can reach Dendrite over the container network.
  2752. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it,
  2753. # you can expose Dendrite's ports to the host.
  2754. #
  2755. # For exposing Dendrite's plain HTTP server to the local host.
  2756. 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 '' }}"
  2757. #
  2758. # For exposing Dendrite's HTTPS server to the local host.
  2759. 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) }}"
  2760. matrix_dendrite_client_api_registration_shared_secret: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'dendrite.rss', rounds=655555) | to_uuid }}"
  2761. matrix_dendrite_database_hostname: "{{ devture_postgres_connection_hostname if devture_postgres_enabled else '' }}"
  2762. matrix_dendrite_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'dendrite.db', rounds=655555) | to_uuid }}"
  2763. # Even if TURN doesn't support TLS (it does by default),
  2764. # it doesn't hurt to try a secure connection anyway.
  2765. matrix_dendrite_client_api_turn_uris: |
  2766. {{
  2767. [
  2768. 'turns:' + matrix_server_fqn_matrix + '?transport=udp',
  2769. 'turns:' + matrix_server_fqn_matrix + '?transport=tcp',
  2770. 'turn:' + matrix_server_fqn_matrix + '?transport=udp',
  2771. 'turn:' + matrix_server_fqn_matrix + '?transport=tcp',
  2772. ]
  2773. if matrix_coturn_enabled
  2774. else []
  2775. }}
  2776. matrix_dendrite_client_api_turn_shared_secret: "{{ matrix_coturn_turn_static_auth_secret if matrix_coturn_enabled else '' }}"
  2777. matrix_dendrite_disable_tls_validation: "{{ true if matrix_playbook_ssl_retrieval_method == 'self-signed' else false }}"
  2778. matrix_dendrite_self_check_validate_certificates: "{{ false if matrix_playbook_ssl_retrieval_method == 'self-signed' else true }}"
  2779. matrix_dendrite_trusted_id_servers: "{{ [matrix_server_fqn_matrix] if matrix_ma1sd_enabled else ['matrix.org', 'vector.im'] }}"
  2780. matrix_dendrite_systemd_required_services_list: |
  2781. {{
  2782. (['docker.service'])
  2783. +
  2784. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  2785. +
  2786. (['matrix-goofys.service'] if matrix_s3_media_store_enabled else [])
  2787. }}
  2788. matrix_dendrite_systemd_wanted_services_list: |
  2789. {{
  2790. (['matrix-coturn.service'] if matrix_coturn_enabled else [])
  2791. }}
  2792. matrix_dendrite_container_extra_arguments_auto: "{{ matrix_homeserver_container_extra_arguments_auto }}"
  2793. matrix_dendrite_app_service_config_files_auto: "{{ matrix_homeserver_app_service_config_files_auto }}"
  2794. ######################################################################
  2795. #
  2796. # /matrix-dendrite
  2797. #
  2798. ######################################################################
  2799. ######################################################################
  2800. #
  2801. # matrix-conduit
  2802. #
  2803. ######################################################################
  2804. matrix_conduit_enabled: "{{ matrix_homeserver_implementation == 'conduit' }}"
  2805. matrix_conduit_systemd_required_services_list: |
  2806. {{
  2807. (['docker.service'])
  2808. }}
  2809. ######################################################################
  2810. #
  2811. # /matrix-conduit
  2812. #
  2813. ######################################################################
  2814. ######################################################################
  2815. #
  2816. # matrix-user-creator
  2817. #
  2818. ######################################################################
  2819. matrix_user_creator_users_auto: |
  2820. {{
  2821. ([{
  2822. 'username': matrix_bot_matrix_reminder_bot_matrix_user_id_localpart,
  2823. 'initial_password': matrix_bot_matrix_reminder_bot_matrix_user_password,
  2824. 'initial_type': 'bot',
  2825. }] if matrix_bot_matrix_reminder_bot_enabled else [])
  2826. +
  2827. ([{
  2828. 'username': matrix_bot_honoroit_login,
  2829. 'initial_password': matrix_bot_honoroit_password,
  2830. 'initial_type': 'bot',
  2831. }] if matrix_bot_honoroit_enabled else [])
  2832. +
  2833. ([{
  2834. 'username': matrix_bot_postmoogle_login,
  2835. 'initial_password': matrix_bot_postmoogle_password,
  2836. 'initial_type': 'bot',
  2837. }] if matrix_bot_postmoogle_enabled else [])
  2838. +
  2839. ([{
  2840. 'username': matrix_bot_buscarron_login,
  2841. 'initial_password': matrix_bot_buscarron_password,
  2842. 'initial_type': 'bot',
  2843. }] if matrix_bot_buscarron_enabled else [])
  2844. }}
  2845. ######################################################################
  2846. #
  2847. # /matrix-user-creator
  2848. #
  2849. ######################################################################
  2850. ######################################################################
  2851. #
  2852. # matrix-user-verification-service
  2853. #
  2854. ######################################################################
  2855. ## FIXME: Needs to be updated when there is a proper release by upstream.
  2856. matrix_user_verification_service_docker_image: "{{ matrix_user_verification_service_docker_image_name_prefix }}matrixdotorg/matrix-user-verification-service@sha256:d2aabc984dd69d258c91900c36928972d7aaef19d776caa3cd6a0fbc0e307270"
  2857. matrix_user_verification_service_enabled: false
  2858. matrix_user_verification_service_systemd_required_services_list: |
  2859. {{
  2860. ['docker.service']
  2861. +
  2862. (['matrix-synapse.service'] if matrix_synapse_enabled else [])
  2863. +
  2864. ([devture_postgres_identifier ~ '.service'] if devture_postgres_enabled else [])
  2865. }}
  2866. # If Jitsi is managed by this playbook we can use the docker network - no need to expose a port.
  2867. # If Jitsi is not managed by this playbook, or you otherwise have a need for it, you can expose
  2868. # matrix-user-verfification-services's client-server port to port 3003.
  2869. # By default Matrix-User-Verification-Service binds to port 3000, which collides with grafana, therefore this uses port 3003.
  2870. matrix_user_verification_service_container_http_host_bind_port: "{{ '' if (matrix_jitsi_enabled | bool and matrix_jitsi_enable_auth | bool and matrix_jitsi_auth_type == 'matrix') else matrix_playbook_service_host_bind_interface_prefix ~ ':3003' }}"
  2871. # URL exposed in the docker network
  2872. matrix_user_verification_service_container_url: "http://{{ matrix_user_verification_service_container_name }}:3000"
  2873. # We connect via the container network (private IPs), so we need to disable IP checks
  2874. matrix_user_verification_service_uvs_disable_ip_blacklist: "{{'true' if matrix_synapse_enabled else 'false'}}"
  2875. matrix_user_verification_service_uvs_auth_token: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'uvs.auth.token', rounds=655555) | to_uuid }}"
  2876. ######################################################################
  2877. #
  2878. # /matrix-user-verification-service
  2879. #
  2880. ######################################################################
  2881. ########################################################################
  2882. # #
  2883. # com.devture.ansible.role.traefik #
  2884. # #
  2885. ########################################################################
  2886. # To completely disable the Traefik role from running, use `matrix_playbook_traefik_role_enabled: false`.
  2887. # See the comment there for more details about why we have both `devture_traefik_enabled` and `matrix_playbook_traefik_role_enabled`.
  2888. devture_traefik_enabled: "{{ matrix_playbook_reverse_proxy_type == 'playbook-managed-traefik' }}"
  2889. devture_traefik_uid: "{{ matrix_user_uid }}"
  2890. devture_traefik_gid: "{{ matrix_user_gid }}"
  2891. devture_traefik_additional_entrypoints_auto:
  2892. - name: matrix-federation
  2893. port: "{{ matrix_federation_public_port }}"
  2894. host_bind_port: "{{ matrix_federation_public_port }}"
  2895. config: {}
  2896. devture_traefik_additional_domains_to_obtain_certificates_for: "{{ matrix_ssl_additional_domains_to_obtain_certificates_for }}"
  2897. ########################################################################
  2898. # #
  2899. # /com.devture.ansible.role.traefik #
  2900. # #
  2901. ########################################################################
  2902. ########################################################################
  2903. # #
  2904. # com.devture.ansible.role.traefik_certs_dumper #
  2905. # #
  2906. ########################################################################
  2907. # To completely disable the Traefik certs dumper role from running, use `matrix_playbook_traefik_certs_dumper_role_enabled: false`.
  2908. # See the comment there for more details about why we have both `devture_traefik_certs_dumper_enabled` and `matrix_playbook_traefik_certs_dumper_role_enabled`.
  2909. devture_traefik_certs_dumper_enabled: "{{ matrix_playbook_traefik_certs_dumper_role_enabled }}"
  2910. devture_traefik_certs_dumper_identifier: matrix-traefik-certs-dumper
  2911. devture_traefik_certs_dumper_base_path: "{{ matrix_base_data_path }}/traefik-certs-dumper"
  2912. devture_traefik_certs_dumper_uid: "{{ matrix_user_uid }}"
  2913. devture_traefik_certs_dumper_gid: "{{ matrix_user_gid }}"
  2914. devture_traefik_certs_dumper_ssl_dir_path: "{{ devture_traefik_ssl_dir_path if devture_traefik_enabled else '' }}"
  2915. ########################################################################
  2916. # #
  2917. # /com.devture.ansible.role.traefik_certs_dumper #
  2918. # #
  2919. ########################################################################