Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

253 行
12 KiB

  1. ---
  2. # The bare domain name which represents your Matrix identity.
  3. # Matrix user ids for your server will be of the form (`@user:<matrix-domain>`).
  4. #
  5. # Note: this playbook does not touch the server referenced here.
  6. # Installation happens on another server ("matrix.<matrix-domain>", see `matrix_server_fqn_matrix`).
  7. #
  8. # Example value: example.com
  9. matrix_domain: ~
  10. # The optional matrix admin MXID, used in bridges' configs to set bridge admin user
  11. # Example value: "@someone:{{ matrix_domain }}"
  12. matrix_admin: ''
  13. # Global var to enable/disable encryption across all bridges with encryption support
  14. matrix_bridges_encryption_enabled: false
  15. # Global var to enable/disable relay mode across all bridges with relay mode support
  16. matrix_bridges_relay_enabled: false
  17. # A container network where all addon services (bridges, bots, etc.) would live.
  18. matrix_addons_container_network: matrix-addons
  19. # The container network that the homeserver lives on and addon services (bridges, bots, etc.) should be connected to
  20. matrix_addons_homeserver_container_network: "{{ matrix_homeserver_container_network }}"
  21. # The URL where addon services (bridges, bots, etc.) can reach the homeserver.
  22. matrix_addons_homeserver_client_api_url: "{{ matrix_homeserver_container_url }}"
  23. # The systemd services (representing the homeserver) that addon services (bridges, bots, etc.) should depend on
  24. matrix_addons_homeserver_systemd_services_list: "{{ matrix_homeserver_systemd_services_list }}"
  25. # matrix_homeserver_enabled controls whether to enable the homeserver systemd service, etc.
  26. #
  27. # Unless you're wrapping this playbook in another one
  28. # where you optionally wish to disable homeserver integration, you don't need to use this.
  29. #
  30. # Note: disabling this does not mean that a homeserver won't get installed.
  31. # Whether homeserver software is installed depends on other (`matrix_HOMESERVER_enabled`) variables - see `group_vars/matrix_servers`.
  32. matrix_homeserver_enabled: true
  33. # This will contain the homeserver implementation that is in use.
  34. # Valid values: synapse, dendrite, conduit
  35. #
  36. # By default, we use Synapse, because it's the only full-featured Matrix server at the moment.
  37. #
  38. # This value automatically influences other variables (`matrix_synapse_enabled`, `matrix_dendrite_enabled`, etc.).
  39. # The homeserver implementation of an existing server cannot be changed without data loss.
  40. matrix_homeserver_implementation: synapse
  41. # This contains a secret, which is used for generating various other secrets later on.
  42. matrix_homeserver_generic_secret_key: ''
  43. # This is where your data lives and what we set up.
  44. # This and the Element FQN (see below) are expected to be on the same server.
  45. matrix_server_fqn_matrix: "matrix.{{ matrix_domain }}"
  46. # This is where you access federation API.
  47. matrix_server_fqn_matrix_federation: '{{ matrix_server_fqn_matrix }}'
  48. # This is where you access the Element web UI from (if enabled via matrix_client_element_enabled; enabled by default).
  49. # This and the Matrix FQN (see above) are expected to be on the same server.
  50. matrix_server_fqn_element: "element.{{ matrix_domain }}"
  51. # This is where you access the Hydrogen web client from (if enabled via matrix_client_hydrogen_enabled; disabled by default).
  52. matrix_server_fqn_hydrogen: "hydrogen.{{ matrix_domain }}"
  53. # This is where you access the Cinny web client from (if enabled via matrix_client_cinny_enabled; disabled by default).
  54. matrix_server_fqn_cinny: "cinny.{{ matrix_domain }}"
  55. # This is where you access the schildichat web client from (if enabled via matrix_client_schildichat_enabled; disabled by default).
  56. matrix_server_fqn_schildichat: "schildichat.{{ matrix_domain }}"
  57. # This is where you access the buscarron bot from (if enabled via matrix_bot_buscarron_enabled; disabled by default).
  58. matrix_server_fqn_buscarron: "buscarron.{{ matrix_domain }}"
  59. # This is where you access the Dimension.
  60. matrix_server_fqn_dimension: "dimension.{{ matrix_domain }}"
  61. # This is where you access the etherpad (if enabled via etherpad_enabled; disabled by default).
  62. matrix_server_fqn_etherpad: "etherpad.{{ matrix_domain }}"
  63. # For use with Go-NEB! (github callback url for example)
  64. matrix_server_fqn_bot_go_neb: "goneb.{{ matrix_domain }}"
  65. # This is where you access Jitsi.
  66. matrix_server_fqn_jitsi: "jitsi.{{ matrix_domain }}"
  67. # This is where you access Grafana.
  68. matrix_server_fqn_grafana: "stats.{{ matrix_domain }}"
  69. # This is where you access the Sygnal push gateway.
  70. matrix_server_fqn_sygnal: "sygnal.{{ matrix_domain }}"
  71. # This is where you access the mautrix wsproxy push gateway.
  72. matrix_server_fqn_mautrix_wsproxy: "wsproxy.{{ matrix_domain }}"
  73. # This is where you access the ntfy push notification service.
  74. matrix_server_fqn_ntfy: "ntfy.{{ matrix_domain }}"
  75. # This is where you access rageshake.
  76. matrix_server_fqn_rageshake: "rageshake.{{ matrix_domain }}"
  77. matrix_federation_public_port: 8448
  78. # The name of the Traefik entrypoint for handling Matrix Federation
  79. matrix_federation_traefik_entrypoint: matrix-federation
  80. # The architecture that your server runs.
  81. # Recognized values by us are 'amd64', 'arm32' and 'arm64'.
  82. # Not all architectures support all services, so your experience (on non-amd64) may vary.
  83. # See docs/alternative-architectures.md
  84. matrix_architecture: "{{ 'amd64' if ansible_architecture == 'x86_64' else ('arm64' if ansible_architecture == 'aarch64' else ('arm32' if ansible_architecture.startswith('armv') else '')) }}"
  85. # The architecture for Debian packages.
  86. # See: https://wiki.debian.org/SupportedArchitectures
  87. # We just remap from our `matrix_architecture` values to what Debian and possibly other distros call things.
  88. matrix_debian_arch: "{{ 'armhf' if matrix_architecture == 'arm32' else matrix_architecture }}"
  89. matrix_container_global_registry_prefix: "docker.io/"
  90. matrix_user_username: "matrix"
  91. matrix_user_groupname: "matrix"
  92. # By default, the playbook creates the user (`matrix_user_username`)
  93. # and group (`matrix_user_groupname`) with a random id.
  94. # To use a specific user/group id, override these variables.
  95. matrix_user_uid: ~
  96. matrix_user_gid: ~
  97. matrix_base_data_path: "/matrix"
  98. matrix_base_data_path_mode: "750"
  99. matrix_bin_path: "{{ matrix_base_data_path }}/bin"
  100. matrix_host_command_sleep: "/usr/bin/env sleep"
  101. matrix_host_command_chown: "/usr/bin/env chown"
  102. matrix_host_command_fusermount: "/usr/bin/env fusermount"
  103. matrix_host_command_openssl: "/usr/bin/env openssl"
  104. matrix_homeserver_url: "https://{{ matrix_server_fqn_matrix }}"
  105. # Specifies on which container network the homeserver is.
  106. matrix_homeserver_container_network: ""
  107. # Specifies which systemd services are responsible for the homeserver
  108. matrix_homeserver_systemd_services_list: []
  109. # Specifies where the homeserver's Client-Server API is on the container network (matrix_homeserver_container_network).
  110. matrix_homeserver_container_url: "http://{{ matrix_homeserver_container_client_api_endpoint }}"
  111. # Specifies where the homeserver's Client-Server API is on the container network (matrix_homeserver_container_network).
  112. # Where this is depends on whether there's a reverse-proxy in front of the homeserver, which homeserver it is, etc.
  113. # This likely gets overriden elsewhere.
  114. matrix_homeserver_container_client_api_endpoint: ""
  115. # Specifies where the homeserver's Federation API is on the container network (matrix_homeserver_container_network).
  116. matrix_homeserver_container_federation_url: "http://{{ matrix_homeserver_container_federation_api_endpoint }}"
  117. # Specifies where the homeserver's Federation API is on the container network (matrix_homeserver_container_network).
  118. # Where this is depends on whether there's a reverse-proxy in front of the homeserver, which homeserver it is, etc.
  119. # This likely gets overriden elsewhere.
  120. matrix_homeserver_container_federation_api_endpoint: ""
  121. # Specifies the public url of the Sync v3 (sliding-sync) API.
  122. # This will be used to set the `org.matrix.msc3575.proxy` property in `/.well-known/matrix/client`.
  123. # Once the API is stabilized, this will no longer be required.
  124. # See MSC3575: https://github.com/matrix-org/matrix-spec-proposals/blob/kegan/sync-v3/proposals/3575-sync.md
  125. matrix_homeserver_sliding_sync_url: ""
  126. matrix_identity_server_url: ~
  127. matrix_integration_manager_rest_url: ~
  128. matrix_integration_manager_ui_url: ~
  129. # The Docker network that all services would be put into
  130. matrix_docker_network: "matrix"
  131. matrix_homeserver_container_extra_arguments_auto: []
  132. matrix_homeserver_app_service_config_files_auto: []
  133. # Controls whether various services should expose metrics publicly.
  134. # If Prometheus is operating on the same machine, exposing metrics publicly is not necessary.
  135. matrix_metrics_exposure_enabled: false
  136. matrix_metrics_exposure_hostname: "{{ matrix_server_fqn_matrix }}"
  137. matrix_metrics_exposure_path_prefix: /metrics
  138. matrix_metrics_exposure_http_basic_auth_enabled: false
  139. # See https://doc.traefik.io/traefik/middlewares/http/basicauth/#users
  140. matrix_metrics_exposure_http_basic_auth_users: ''
  141. # Specifies the type of reverse-proxy used by the playbook.
  142. #
  143. # Changing this has an effect on whether a reverse-proxy is installed at all and what its type is,
  144. # as well as how all other services are configured.
  145. #
  146. # Valid options and a description of their behavior:
  147. #
  148. # - `playbook-managed-traefik`
  149. # - the playbook will run a managed Traefik instance (matrix-traefik)
  150. # - Traefik will do SSL termination, unless you disable it (e.g. `devture_traefik_config_entrypoint_web_secure_enabled: false`)
  151. # - if SSL termination is enabled (as it is by default), you need to populate: `devture_traefik_config_certificatesResolvers_acme_email`
  152. # - it will also install matrix-nginx-proxy in local-only mode, while we migrate the rest of the services to a Traefik-native mode of working
  153. #
  154. # - `playbook-managed-nginx`
  155. # - the playbook will install matrix-nginx-proxy
  156. # - matrix-nginx-proxy will do SSL termination with Certbot, unless you change that (see `matrix_ssl_retrieval_method`)
  157. # - if SSL termination is enabled (as it is by default), you need to populate: `matrix_ssl_lets_encrypt_support_email`
  158. #
  159. # - `other-traefik-container`
  160. # - this playbook will not install Traefik
  161. # - nevertheless, the playbook expects that you would install Traefik yourself via other means
  162. # - you should make sure your Traefik configuration is compatible with what the playbook would have configured (web, web-secure, matrix-federation entrypoints, etc.)
  163. # - you need to set `matrix_playbook_reverse_proxyable_services_additional_network` to the name of your Traefik network
  164. # - Traefik certs dumper will be enabled by default (`devture_traefik_certs_dumper_enabled`). You need to point it to your Traefik's SSL certificates (`devture_traefik_certs_dumper_ssl_dir_path`)
  165. #
  166. # - `other-nginx-non-container`
  167. # - the playbook will not install matrix-nginx-proxy
  168. # - however, it will still dump some nginx configuration in /matrix/nginx/conf.d
  169. # - these configs are meant to be included into a locally-installed (without a container) nginx server
  170. # - all container services are exposed locally (e.g. `-p 127.0.0.1:8080:8080`)
  171. #
  172. # - `other-on-same-host`
  173. # - like other-nginx-non-container, but supposedly won't generate useless configuration in /matrix/nginx/conf.d in the future
  174. #
  175. # - `other-on-another-host`
  176. # - like other-on-same-host, but services are exposed on all interfaces (e.g. `-p 0.0.0.0:8080:8080`)
  177. # - configurable via `matrix_playbook_service_host_bind_interface_prefix`
  178. #
  179. # - `none`
  180. # - no reverse-proxy will be installed
  181. # - no nginx configuration will be dumped in /matrix/nginx/conf.d
  182. # - no port exposure will be done for any of the container services
  183. # - it's up to you to expose the ports you want, etc.
  184. matrix_playbook_reverse_proxy_type: ''
  185. matrix_playbook_service_host_bind_interface_prefix: "{{ '' if matrix_playbook_reverse_proxy_type not in ['other-nginx-non-container', 'other-on-same-host', 'other-on-another-host'] else ('0.0.0.0:' if matrix_playbook_reverse_proxy_type == 'other-on-another-host' else '127.0.0.1:') }}"
  186. # Variables to Control which parts of our roles run.
  187. run_postgres_import: true
  188. run_postgres_upgrade: true
  189. run_postgres_import_sqlite_db: true
  190. run_postgres_vacuum: true
  191. run_synapse_register_user: true
  192. run_synapse_update_user_password: true
  193. run_synapse_import_media_store: true
  194. run_synapse_rust_synapse_compress_state: true
  195. run_dendrite_register_user: true
  196. run_setup: true
  197. run_self_check: true
  198. run_start: true
  199. run_stop: true