Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

281 line
14 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. # Homeserver admin contacts and support page as per MSC 1929
  14. # See: https://github.com/matrix-org/matrix-spec-proposals/pull/1929
  15. # Users in form:
  16. # matrix_homeserver_admin_contacts:
  17. # - matrix_id: @admin:domain.tld
  18. # email_address: admin@domain.tld
  19. # role: admin
  20. # - email_address: security@domain.tld
  21. # role: security
  22. # Also see: `matrix_well_known_matrix_support_enabled`
  23. matrix_homeserver_admin_contacts: []
  24. # Url string like https://domain.tld/support.html
  25. # Also see: `matrix_well_known_matrix_support_enabled`
  26. matrix_homeserver_support_url: ''
  27. # This will contain the homeserver implementation that is in use.
  28. # Valid values: synapse, dendrite, conduit
  29. #
  30. # By default, we use Synapse, because it's the only full-featured Matrix server at the moment.
  31. #
  32. # This value automatically influences other variables (`matrix_synapse_enabled`, `matrix_dendrite_enabled`, etc.).
  33. # The homeserver implementation of an existing server cannot be changed without data loss.
  34. matrix_homeserver_implementation: synapse
  35. # This contains a secret, which is used for generating various other secrets later on.
  36. matrix_homeserver_generic_secret_key: ''
  37. # This is where your data lives and what we set up.
  38. # This and the Element FQN (see below) are expected to be on the same server.
  39. matrix_server_fqn_matrix: "matrix.{{ matrix_domain }}"
  40. # This is where you access federation API.
  41. matrix_server_fqn_matrix_federation: '{{ matrix_server_fqn_matrix }}'
  42. # This is where you access the Element web UI from (if enabled via matrix_client_element_enabled; enabled by default).
  43. # This and the Matrix FQN (see above) are expected to be on the same server.
  44. matrix_server_fqn_element: "element.{{ matrix_domain }}"
  45. # This is where you access the Hydrogen web client from (if enabled via matrix_client_hydrogen_enabled; disabled by default).
  46. matrix_server_fqn_hydrogen: "hydrogen.{{ matrix_domain }}"
  47. # This is where you access the Cinny web client from (if enabled via matrix_client_cinny_enabled; disabled by default).
  48. matrix_server_fqn_cinny: "cinny.{{ matrix_domain }}"
  49. # This is where you access the buscarron bot from (if enabled via matrix_bot_buscarron_enabled; disabled by default).
  50. matrix_server_fqn_buscarron: "buscarron.{{ matrix_domain }}"
  51. # This is where you access the Dimension.
  52. matrix_server_fqn_dimension: "dimension.{{ matrix_domain }}"
  53. # This is where you access the etherpad (if enabled via matrix_etherpad_enabled; disabled by default).
  54. matrix_server_fqn_etherpad: "etherpad.{{ matrix_domain }}"
  55. # For use with Go-NEB! (github callback url for example)
  56. matrix_server_fqn_bot_go_neb: "goneb.{{ matrix_domain }}"
  57. # This is where you access Jitsi.
  58. matrix_server_fqn_jitsi: "jitsi.{{ matrix_domain }}"
  59. # This is where you access Grafana.
  60. matrix_server_fqn_grafana: "stats.{{ matrix_domain }}"
  61. # This is where you access the Sygnal push gateway.
  62. matrix_server_fqn_sygnal: "sygnal.{{ matrix_domain }}"
  63. # This is where you access the mautrix wsproxy push gateway.
  64. matrix_server_fqn_mautrix_wsproxy: "wsproxy.{{ matrix_domain }}"
  65. # This is where you access the ntfy push notification service.
  66. matrix_server_fqn_ntfy: "ntfy.{{ matrix_domain }}"
  67. matrix_federation_public_port: 8448
  68. # The architecture that your server runs.
  69. # Recognized values by us are 'amd64', 'arm32' and 'arm64'.
  70. # Not all architectures support all services, so your experience (on non-amd64) may vary.
  71. # See docs/alternative-architectures.md
  72. matrix_architecture: amd64
  73. # The architecture for Debian packages.
  74. # See: https://wiki.debian.org/SupportedArchitectures
  75. # We just remap from our `matrix_architecture` values to what Debian and possibly other distros call things.
  76. matrix_debian_arch: "{{ 'armhf' if matrix_architecture == 'arm32' else matrix_architecture }}"
  77. matrix_container_global_registry_prefix: "docker.io/"
  78. matrix_user_username: "matrix"
  79. matrix_user_groupname: "matrix"
  80. # By default, the playbook creates the user (`matrix_user_username`)
  81. # and group (`matrix_user_groupname`) with a random id.
  82. # To use a specific user/group id, override these variables.
  83. matrix_user_uid: ~
  84. matrix_user_gid: ~
  85. matrix_base_data_path: "/matrix"
  86. matrix_base_data_path_mode: "750"
  87. matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files"
  88. # This is now unused. We keep it so that cleanup tasks can use it.
  89. # To be removed in the future.
  90. matrix_cron_path: "/etc/cron.d"
  91. matrix_local_bin_path: "/usr/local/bin"
  92. matrix_host_command_sleep: "/usr/bin/env sleep"
  93. matrix_host_command_chown: "/usr/bin/env chown"
  94. matrix_host_command_fusermount: "/usr/bin/env fusermount"
  95. matrix_host_command_openssl: "/usr/bin/env openssl"
  96. matrix_homeserver_url: "https://{{ matrix_server_fqn_matrix }}"
  97. # Specifies where the homeserver's Client-Server API is on the container network.
  98. # Where this is depends on whether there's a reverse-proxy in front of the homeserver, which homeserver it is, etc.
  99. # This likely gets overriden elsewhere.
  100. matrix_homeserver_container_url: ""
  101. # Specifies where the homeserver's Federation API is on the container network.
  102. # Where this is depends on whether there's a reverse-proxy in front of the homeserver, which homeserver it is, etc.
  103. # This likely gets overriden elsewhere.
  104. matrix_homeserver_container_federation_url: ""
  105. matrix_identity_server_url: ~
  106. matrix_integration_manager_rest_url: ~
  107. matrix_integration_manager_ui_url: ~
  108. # The domain name where a Jitsi server is self-hosted.
  109. # If set, `/.well-known/matrix/client` will suggest Element clients to use that Jitsi server.
  110. # See: https://github.com/vector-im/element-web/blob/develop/docs/jitsi.md#configuring-element-to-use-your-self-hosted-jitsi-server
  111. matrix_client_element_jitsi_preferredDomain: '' # noqa var-naming
  112. # Controls whether Element should use End-to-End Encryption by default.
  113. # Setting this to false will update `/.well-known/matrix/client` and tell Element clients to avoid E2EE.
  114. # See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
  115. matrix_client_element_e2ee_default: true
  116. # Controls whether Element should require a secure backup set up before Element can be used.
  117. # Setting this to true will update `/.well-known/matrix/client` and tell Element require a secure backup.
  118. # See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
  119. matrix_client_element_e2ee_secure_backup_required: false
  120. # Controls which backup methods from ["key", "passphrase"] should be used, both is the default.
  121. # Setting this to other then empty will update `/.well-known/matrix/client` and tell Element which method to use
  122. # See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
  123. matrix_client_element_e2ee_secure_backup_setup_methods: []
  124. # Default `/.well-known/matrix/client` configuration - it covers the generic use case.
  125. # You can customize it by controlling the various variables inside the template file that it references.
  126. #
  127. # For a more advanced customization, you can extend the default (see `matrix_well_known_matrix_client_configuration_extension_json`)
  128. # or completely replace this variable with your own template.
  129. #
  130. # The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
  131. # This is unlike what it does when looking up YAML template files (no automatic parsing there).
  132. matrix_well_known_matrix_client_configuration_default: "{{ lookup('template', 'templates/static-files/well-known/matrix-client.j2') }}"
  133. # Your custom JSON configuration for `/.well-known/matrix/client` should go to `matrix_well_known_matrix_client_configuration_extension_json`.
  134. # This configuration extends the default starting configuration (`matrix_well_known_matrix_client_configuration_default`).
  135. #
  136. # You can override individual variables from the default configuration, or introduce new ones.
  137. #
  138. # If you need something more special, you can take full control by
  139. # completely redefining `matrix_well_known_matrix_client_configuration`.
  140. #
  141. # Example configuration extension follows:
  142. #
  143. # matrix_well_known_matrix_client_configuration_extension_json: |
  144. # {
  145. # "io.element.call_behaviour": {
  146. # "widget_build_url": "https://dimension.example.com/api/v1/dimension/bigbluebutton/widget_state"
  147. # }
  148. # }
  149. matrix_well_known_matrix_client_configuration_extension_json: '{}'
  150. matrix_well_known_matrix_client_configuration_extension: "{{ matrix_well_known_matrix_client_configuration_extension_json | from_json if matrix_well_known_matrix_client_configuration_extension_json | from_json is mapping else {} }}"
  151. # Holds the final `/.well-known/matrix/client` configuration (a combination of the default and its extension).
  152. # You most likely don't need to touch this variable. Instead, see `matrix_well_known_matrix_client_configuration_default` and `matrix_well_known_matrix_client_configuration_extension_json`.
  153. matrix_well_known_matrix_client_configuration: "{{ matrix_well_known_matrix_client_configuration_default | combine(matrix_well_known_matrix_client_configuration_extension, recursive=True) }}"
  154. # Default `/.well-known/matrix/server` configuration - it covers the generic use case.
  155. # You can customize it by controlling the various variables inside the template file that it references.
  156. #
  157. # For a more advanced customization, you can extend the default (see `matrix_well_known_matrix_server_configuration_extension_json`)
  158. # or completely replace this variable with your own template.
  159. #
  160. # The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
  161. # This is unlike what it does when looking up YAML template files (no automatic parsing there).
  162. matrix_well_known_matrix_server_configuration_default: "{{ lookup('template', 'templates/static-files/well-known/matrix-server.j2') }}"
  163. # Your custom JSON configuration for `/.well-known/matrix/server` should go to `matrix_well_known_matrix_server_configuration_extension_json`.
  164. # This configuration extends the default starting configuration (`matrix_well_known_matrix_server_configuration_default`).
  165. #
  166. # You can override individual variables from the default configuration, or introduce new ones.
  167. #
  168. # If you need something more special, you can take full control by
  169. # completely redefining `matrix_well_known_matrix_server_configuration`.
  170. #
  171. # Example configuration extension follows:
  172. #
  173. # matrix_well_known_matrix_server_configuration_extension_json: |
  174. # {
  175. # "something": "another"
  176. # }
  177. matrix_well_known_matrix_server_configuration_extension_json: '{}'
  178. matrix_well_known_matrix_server_configuration_extension: "{{ matrix_well_known_matrix_server_configuration_extension_json | from_json if matrix_well_known_matrix_server_configuration_extension_json | from_json is mapping else {} }}"
  179. # Holds the final `/.well-known/matrix/server` configuration (a combination of the default and its extension).
  180. # You most likely don't need to touch this variable. Instead, see `matrix_well_known_matrix_server_configuration_default` and `matrix_well_known_matrix_server_configuration_extension_json`.
  181. matrix_well_known_matrix_server_configuration: "{{ matrix_well_known_matrix_server_configuration_default | combine(matrix_well_known_matrix_server_configuration_extension, recursive=True) }}"
  182. # The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
  183. # This is unlike what it does when looking up YAML template files (no automatic parsing there).
  184. matrix_well_known_matrix_support_configuration_default: "{{ lookup('template', 'templates/static-files/well-known/matrix-support.j2') }}"
  185. matrix_well_known_matrix_support_configuration_extension_json: '{}'
  186. matrix_well_known_matrix_support_configuration_extension: "{{ matrix_well_known_matrix_support_configuration_extension_json | from_json if matrix_well_known_matrix_support_configuration_extension_json | from_json is mapping else {} }}"
  187. # Holds the final `/.well-known/matrix/support` configuration (a combination of the default and its extension).
  188. # You most likely don't need to touch this variable. Instead, see `matrix_well_known_matrix_support_configuration_default` and `matrix_well_known_matrix_support_configuration_extension_json`.
  189. matrix_well_known_matrix_support_configuration: "{{ matrix_well_known_matrix_support_configuration_default | combine(matrix_well_known_matrix_support_configuration_extension, recursive=True) }}"
  190. # The Docker network that all services would be put into
  191. matrix_docker_network: "matrix"
  192. # Controls whether a `/.well-known/matrix/server` file is generated and used at all.
  193. #
  194. # If you wish to rely on DNS SRV records only, you can disable this.
  195. # Using DNS SRV records implies that you'll be handling Matrix Federation API traffic (tcp/8448)
  196. # using certificates for the base domain (`matrix_domain`) and not for the
  197. # matrix domain (`matrix_server_fqn_matrix`).
  198. matrix_well_known_matrix_server_enabled: true
  199. # Controls whether a `/.well-known/matrix/support` file is generated and used at all.
  200. #
  201. # This is not enabled by default, until the MSC gets accepted: https://github.com/matrix-org/matrix-spec-proposals/pull/1929
  202. #
  203. # See `matrix_homeserver_admin_contacts`, `matrix_homeserver_support_url`, etc.
  204. matrix_well_known_matrix_support_enabled: false
  205. # Controls whether Docker is automatically installed.
  206. # If you change this to false you must install and update Docker manually. You also need to install the docker (https://pypi.org/project/docker/) Python package.
  207. matrix_docker_installation_enabled: true
  208. # Controls the Docker package that is installed.
  209. # Possible values are "docker-ce" (default) and "docker.io" (Debian).
  210. matrix_docker_package_name: docker-ce
  211. # Variables to Control which parts of our roles run.
  212. run_postgres_import: true
  213. run_postgres_upgrade: true
  214. run_postgres_import_sqlite_db: true
  215. run_postgres_vacuum: true
  216. run_synapse_register_user: true
  217. run_synapse_update_user_password: true
  218. run_synapse_import_media_store: true
  219. run_synapse_rust_synapse_compress_state: true
  220. run_dendrite_register_user: true
  221. run_setup: true
  222. run_self_check: true
  223. run_start: true
  224. run_stop: true