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

341 строка
13 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-appservice-irc
  13. #
  14. ######################################################################
  15. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-appservice-irc over the container network.
  16. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  17. # matrix-appservice-irc's client-server port to the local host (`127.0.0.1:9999`).
  18. matrix_appservice_irc_container_expose_client_server_api_port: "{{ not matrix_nginx_proxy_enabled }}"
  19. ######################################################################
  20. #
  21. # matrix-base
  22. #
  23. ######################################################################
  24. 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 }}"
  25. ######################################################################
  26. #
  27. # /matrix-base
  28. #
  29. ######################################################################
  30. ######################################################################
  31. #
  32. # matrix-corporal
  33. #
  34. ######################################################################
  35. matrix_corporal_enabled: false
  36. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-corporal over the container network.
  37. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  38. # matrix-corporal's web-server ports to the local host (`127.0.0.1:41080` and `127.0.0.1:41081`).
  39. matrix_corporal_container_expose_ports: "{{ not matrix_nginx_proxy_enabled }}"
  40. matrix_corporal_systemd_required_services_list: |
  41. {{
  42. (['docker.service'])
  43. +
  44. (['matrix-synapse.service'])
  45. }}
  46. matrix_corporal_matrix_homeserver_api_endpoint: "http://matrix-synapse:8008"
  47. matrix_corporal_matrix_auth_shared_secret: "{{ matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret }}"
  48. matrix_corporal_matrix_registration_shared_secret: "{{ matrix_synapse_registration_shared_secret }}"
  49. ######################################################################
  50. #
  51. # /matrix-corporal
  52. #
  53. ######################################################################
  54. ######################################################################
  55. #
  56. # matrix-coturn
  57. #
  58. ######################################################################
  59. matrix_coturn_enabled: true
  60. ######################################################################
  61. #
  62. # /matrix-coturn
  63. #
  64. ######################################################################
  65. ######################################################################
  66. #
  67. # matrix-mailer
  68. #
  69. ######################################################################
  70. # By default, this playbook sets up a postfix mailer server (running in a container).
  71. # This is so that Synapse can send email reminders for unread messages.
  72. # Other services (like mxisd), also use the mailer.
  73. matrix_mailer_enabled: true
  74. ######################################################################
  75. #
  76. # /matrix-mailer
  77. #
  78. ######################################################################
  79. ######################################################################
  80. #
  81. # matrix-mxisd
  82. #
  83. ######################################################################
  84. # By default, this playbook installs the mxisd identity server on the same domain as Synapse (`matrix_server_fqn_matrix`).
  85. # If you wish to use the public identity servers (matrix.org, vector.im) instead of your own you may wish to disable this.
  86. matrix_mxisd_enabled: true
  87. # Normally, matrix-nginx-proxy is enabled and nginx can reach mxisd over the container network.
  88. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  89. # mxisd's web-server port to the local host (`127.0.0.1:8090`).
  90. matrix_mxisd_container_expose_port: "{{ not matrix_nginx_proxy_enabled }}"
  91. # We enable Synapse integration via its Postgres database by default.
  92. # When using another Identity store, you might wish to disable this and define
  93. # your own configuration in `matrix_mxisd_configuration_extension_yaml`.
  94. matrix_mxisd_synapsesql_enabled: true
  95. matrix_mxisd_synapsesql_type: postgresql
  96. matrix_mxisd_synapsesql_connection: //{{ matrix_synapse_database_host }}/{{ matrix_synapse_database_database }}?user={{ matrix_synapse_database_user }}&password={{ matrix_synapse_database_password }}
  97. matrix_mxisd_dns_overwrite_enabled: true
  98. matrix_mxisd_dns_overwrite_homeserver_client_name: "{{ matrix_server_fqn_matrix }}"
  99. matrix_mxisd_dns_overwrite_homeserver_client_value: "http://{{ 'matrix-corporal:41080' if matrix_corporal_enabled else 'matrix-synapse:8008' }}"
  100. # By default, we send mail through the `matrix-mailer` service.
  101. matrix_mxisd_threepid_medium_email_identity_from: "{{ matrix_mailer_sender_address }}"
  102. matrix_mxisd_threepid_medium_email_connectors_smtp_host: "matrix-mailer"
  103. matrix_mxisd_threepid_medium_email_connectors_smtp_port: 8025
  104. matrix_mxisd_threepid_medium_email_connectors_smtp_tls: 0
  105. matrix_mxisd_systemd_wanted_services_list: |
  106. {{
  107. (['matrix-corporal.service'] if matrix_corporal_enabled else ['matrix-synapse.service'])
  108. +
  109. (['matrix-postgres.service'] if matrix_postgres_enabled else [])
  110. +
  111. (['matrix-mailer.service'] if matrix_mailer_enabled else [])
  112. }}
  113. ######################################################################
  114. #
  115. # /matrix-mxisd
  116. #
  117. ######################################################################
  118. ######################################################################
  119. #
  120. # matrix-nginx-proxy
  121. #
  122. ######################################################################
  123. # By default, this playbook sets up a reverse-proxy nginx proxy server on TCP ports 80, 443 and 8448.
  124. # This is fine if you're dedicating the whole server to Matrix.
  125. # If that's not the case, you may wish to disable this and take care of proxying yourself.
  126. matrix_nginx_proxy_enabled: true
  127. matrix_nginx_proxy_proxy_matrix_client_api_addr_with_container: "{{ 'matrix-corporal:41080' if matrix_corporal_enabled else 'matrix-synapse:8008' }}"
  128. 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' }}"
  129. matrix_nginx_proxy_proxy_matrix_client_api_client_max_body_size_mb: "{{ matrix_synapse_max_upload_size_mb }}"
  130. matrix_nginx_proxy_proxy_matrix_enabled: true
  131. matrix_nginx_proxy_proxy_riot_enabled: "{{ matrix_riot_web_enabled }}"
  132. matrix_nginx_proxy_proxy_matrix_corporal_api_enabled: "{{ matrix_corporal_enabled and matrix_corporal_http_api_enabled }}"
  133. matrix_nginx_proxy_proxy_matrix_corporal_api_addr_with_container: "matrix-corporal:41081"
  134. matrix_nginx_proxy_proxy_matrix_corporal_api_addr_sans_container: "127.0.0.1:41081"
  135. matrix_nginx_proxy_proxy_matrix_identity_api_enabled: "{{ matrix_mxisd_enabled }}"
  136. matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container: "matrix-mxisd:8090"
  137. matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container: "127.0.0.1:8090"
  138. # By default, we do TLS termination for the Matrix Federation API (port 8448) at matrix-nginx-proxy.
  139. matrix_nginx_proxy_proxy_matrix_federation_api_enabled: true
  140. matrix_nginx_proxy_proxy_matrix_federation_api_addr_with_container: "matrix-synapse:8048"
  141. matrix_nginx_proxy_proxy_matrix_federation_api_addr_sans_container: "127.0.0.1:8048"
  142. matrix_nginx_proxy_proxy_synapse_metrics: "{{ matrix_synapse_metrics_enabled }}"
  143. matrix_nginx_proxy_proxy_synapse_metrics_addr_with_container: "matrix-synapse:{{ matrix_synapse_metrics_port }}"
  144. matrix_nginx_proxy_proxy_synapse_metrics_addr_sans_container: "127.0.0.1:{{ matrix_synapse_metrics_port }}"
  145. matrix_nginx_proxy_proxy_matrix_user_directory_search_enabled: "{{ matrix_mxisd_enabled }}"
  146. matrix_nginx_proxy_proxy_matrix_user_directory_search_addr_with_container: "{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container }}"
  147. matrix_nginx_proxy_proxy_matrix_user_directory_search_addr_sans_container: "{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container }}"
  148. matrix_nginx_proxy_systemd_wanted_services_list: |
  149. {{
  150. (['matrix-synapse.service'])
  151. +
  152. (['matrix-corporal.service'] if matrix_corporal_enabled else [])
  153. +
  154. (['matrix-mxisd.service'] if matrix_mxisd_enabled else [])
  155. +
  156. (['matrix-riot-web.service'] if matrix_riot_web_enabled else [])
  157. }}
  158. matrix_ssl_domains_to_obtain_certificates_for: |
  159. {{
  160. ([matrix_server_fqn_matrix])
  161. +
  162. ([matrix_server_fqn_riot] if matrix_riot_web_enabled else [])
  163. }}
  164. ######################################################################
  165. #
  166. # /matrix-nginx-proxy
  167. #
  168. ######################################################################
  169. ######################################################################
  170. #
  171. # matrix-postgres
  172. #
  173. ######################################################################
  174. matrix_postgres_enabled: true
  175. matrix_postgres_connection_hostname: "matrix-postgres"
  176. matrix_postgres_connection_username: "synapse"
  177. matrix_postgres_connection_password: "synapse-password"
  178. matrix_postgres_db_name: "homeserver"
  179. ######################################################################
  180. #
  181. # /matrix-postgres
  182. #
  183. ######################################################################
  184. ######################################################################
  185. #
  186. # matrix-riot-web
  187. #
  188. ######################################################################
  189. # By default, this playbook installs the Riot.IM web UI on the `matrix_server_fqn_riot` domain.
  190. # If you wish to connect to your Matrix server by other means, you may wish to disable this.
  191. matrix_riot_web_enabled: true
  192. # Normally, matrix-nginx-proxy is enabled and nginx can reach riot-web over the container network.
  193. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  194. # the riot-web HTTP port to the local host (`127.0.0.1:80`).
  195. matrix_riot_web_container_expose_port: "{{ not matrix_nginx_proxy_enabled }}"
  196. matrix_riot_web_default_hs_url: "{{ matrix_homeserver_url }}"
  197. matrix_riot_web_default_is_url: "{{ matrix_identity_server_url }}"
  198. ######################################################################
  199. #
  200. # /matrix-riot-web
  201. #
  202. ######################################################################
  203. ######################################################################
  204. #
  205. # matrix-synapse
  206. #
  207. ######################################################################
  208. # When mxisd is enabled, we can use it instead of the default public Identity servers.
  209. matrix_synapse_trusted_third_party_id_servers: "{{ [matrix_server_fqn_matrix] if matrix_mxisd_enabled else matrix_synapse_id_servers_public }}"
  210. # Normally, matrix-nginx-proxy is enabled and nginx can reach Synapse over the container network.
  211. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose its ports
  212. # to the local host.
  213. #
  214. # For exposing the Matrix Client API's port (plain HTTP) to the local host (`127.0.0.1:8008`).
  215. matrix_synapse_container_expose_client_api_port: "{{ not matrix_nginx_proxy_enabled }}"
  216. # For exposing the Matrix Federation API's port (plain HTTP) to the local host (`127.0.0.1:8048`).
  217. matrix_synapse_container_expose_federation_api_port: "{{ not matrix_nginx_proxy_enabled }}"
  218. matrix_synapse_container_expose_metrics_port: "{{ not matrix_nginx_proxy_enabled }}"
  219. matrix_synapse_database_host: "{{ matrix_postgres_connection_hostname }}"
  220. matrix_synapse_database_user: "{{ matrix_postgres_connection_username }}"
  221. matrix_synapse_database_password: "{{ matrix_postgres_connection_password }}"
  222. matrix_synapse_database_database: "{{ matrix_postgres_db_name }}"
  223. # We do not enable TLS in Synapse by default.
  224. # TLS is handled by the matrix-nginx-proxy, which proxies the requests to Synapse.
  225. matrix_synapse_tls_federation_listener_enabled: false
  226. matrix_synapse_tls_certificate_path: ~
  227. matrix_synapse_tls_private_key_path: ~
  228. matrix_synapse_email_enabled: "{{ matrix_mailer_enabled }}"
  229. matrix_synapse_email_smtp_host: "matrix-mailer"
  230. matrix_synapse_email_smtp_port: 8025
  231. matrix_synapse_email_smtp_require_transport_security: false
  232. matrix_synapse_email_notif_from: "Matrix <{{ matrix_mailer_sender_address }}>"
  233. matrix_synapse_email_riot_base_url: "https://{{ matrix_server_fqn_riot }}"
  234. matrix_synapse_turn_uris: |
  235. {{
  236. [
  237. 'turn:' + matrix_server_fqn_matrix + ':3478?transport=udp',
  238. 'turn:' + matrix_server_fqn_matrix + ':3478?transport=tcp',
  239. ]
  240. if matrix_coturn_enabled
  241. else []
  242. }}
  243. matrix_synapse_turn_shared_secret: "{{ matrix_coturn_turn_static_auth_secret if matrix_coturn_enabled else '' }}"
  244. matrix_synapse_systemd_required_services_list: |
  245. {{
  246. (['docker.service'])
  247. +
  248. (['matrix-postgres.service'] if matrix_postgres_enabled else [])
  249. +
  250. (['matrix-goofys'] if matrix_s3_media_store_enabled else [])
  251. }}
  252. matrix_synapse_systemd_wanted_services_list: |
  253. {{
  254. (['matrix-coturn.service'] if matrix_coturn_enabled else [])
  255. +
  256. (['matrix-mailer.service'] if matrix_mailer_enabled else [])
  257. }}
  258. ######################################################################
  259. #
  260. # /matrix-synapse
  261. #
  262. ######################################################################