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

550 строки
22 KiB

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