Matrix Docker Ansible eploy
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

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