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.
 
 

236 lines
12 KiB

  1. # The bare domain name which represents your Matrix identity.
  2. # Matrix user ids for your server will be of the form (`@user:<matrix-domain>`).
  3. #
  4. # Note: this playbook does not touch the server referenced here.
  5. # Installation happens on another server ("matrix.<matrix-domain>", see `matrix_server_fqn_matrix`).
  6. #
  7. # Example value: example.com
  8. matrix_domain: ~
  9. # This will contain the homeserver implementation that is in use.
  10. # Example values: 'synapse', 'dendrite', etc.
  11. # You normally don't need to set this variable manually.
  12. # Its value is automatically set depending on the homeserver implementation that you have enabled via other variables
  13. # (e.g. `matrix_synapse_enabled`, `matrix_dendrite_enabled`, etc.)
  14. matrix_homeserver_implementation: ''
  15. # This is where your data lives and what we set up.
  16. # This and the Element FQN (see below) are expected to be on the same server.
  17. matrix_server_fqn_matrix: "matrix.{{ matrix_domain }}"
  18. # This is where you access federation API.
  19. matrix_server_fqn_matrix_federation: '{{ matrix_server_fqn_matrix }}'
  20. # This is where you access the Element web UI from (if enabled via matrix_client_element_enabled; enabled by default).
  21. # This and the Matrix FQN (see above) are expected to be on the same server.
  22. matrix_server_fqn_element: "element.{{ matrix_domain }}"
  23. # This is where you access the Hydrogen web client from (if enabled via matrix_client_hydrogen_enabled; disabled by default).
  24. matrix_server_fqn_hydrogen: "hydrogen.{{ matrix_domain }}"
  25. # This is where you access the Cinny web client from (if enabled via matrix_client_cinny_enabled; disabled by default).
  26. matrix_server_fqn_cinny: "cinny.{{ matrix_domain }}"
  27. # This is where you access the Dimension.
  28. matrix_server_fqn_dimension: "dimension.{{ matrix_domain }}"
  29. # For use with Go-NEB! (github callback url for example)
  30. matrix_server_fqn_bot_go_neb: "goneb.{{ matrix_domain }}"
  31. # This is where you access Jitsi.
  32. matrix_server_fqn_jitsi: "jitsi.{{ matrix_domain }}"
  33. # This is where you access Grafana.
  34. matrix_server_fqn_grafana: "stats.{{ matrix_domain }}"
  35. # This is where you access the Sygnal push gateway.
  36. matrix_server_fqn_sygnal: "sygnal.{{ matrix_domain }}"
  37. matrix_federation_public_port: 8448
  38. # The architecture that your server runs.
  39. # Recognized values by us are 'amd64', 'arm32' and 'arm64'.
  40. # Not all architectures support all services, so your experience (on non-amd64) may vary.
  41. # See docs/alternative-architectures.md
  42. matrix_architecture: amd64
  43. # The architecture for Debian packages.
  44. # See: https://wiki.debian.org/SupportedArchitectures
  45. # We just remap from our `matrix_architecture` values to what Debian and possibly other distros call things.
  46. matrix_debian_arch: "{{ 'armhf' if matrix_architecture == 'arm32' else matrix_architecture }}"
  47. matrix_user_username: "matrix"
  48. matrix_user_groupname: "matrix"
  49. # By default, the playbook creates the user (`matrix_user_username`)
  50. # and group (`matrix_user_groupname`) with a random id.
  51. # To use a specific user/group id, override these variables.
  52. matrix_user_uid: ~
  53. matrix_user_gid: ~
  54. matrix_base_data_path: "/matrix"
  55. matrix_base_data_path_mode: "750"
  56. matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files"
  57. matrix_systemd_path: "/etc/systemd/system"
  58. # Specifies the path to use for the `HOME` environment variable for systemd unit files.
  59. # Docker 20.10 complains with `WARNING: Error loading config file: .dockercfg: $HOME is not defined`
  60. # if `$HOME` is not defined, so we define something to make it happy.
  61. matrix_systemd_unit_home_path: /root
  62. # This is now unused. We keep it so that cleanup tasks can use it.
  63. # To be removed in the future.
  64. matrix_cron_path: "/etc/cron.d"
  65. matrix_local_bin_path: "/usr/local/bin"
  66. matrix_host_command_docker: "/usr/bin/env docker"
  67. matrix_host_command_sleep: "/usr/bin/env sleep"
  68. matrix_host_command_chown: "/usr/bin/env chown"
  69. matrix_host_command_fusermount: "/usr/bin/env fusermount"
  70. matrix_host_command_openssl: "/usr/bin/env openssl"
  71. matrix_host_command_systemctl: "/usr/bin/env systemctl"
  72. matrix_host_command_sh: "/usr/bin/env sh"
  73. matrix_ntpd_package: "{{ 'systemd-timesyncd' if (ansible_distribution == 'CentOS' and ansible_distribution_major_version > '7') or (ansible_distribution == 'Ubuntu' and ansible_distribution_major_version > '18') else ( 'systemd' if ansible_os_family == 'Suse' else 'ntp' ) }}"
  74. matrix_ntpd_service: "{{ 'systemd-timesyncd' if (ansible_distribution == 'CentOS' and ansible_distribution_major_version > '7') or (ansible_distribution == 'Ubuntu' and ansible_distribution_major_version > '18') or ansible_distribution == 'Archlinux' or ansible_os_family == 'Suse' else ('ntpd' if ansible_os_family == 'RedHat' else 'ntp') }}"
  75. matrix_homeserver_url: "https://{{ matrix_server_fqn_matrix }}"
  76. # Specifies where the homeserver is on the container network.
  77. # Where this is depends on whether there's a reverse-proxy in front of it, etc.
  78. # This likely gets overriden elsewhere.
  79. matrix_homeserver_container_url: ""
  80. matrix_identity_server_url: ~
  81. matrix_integration_manager_rest_url: ~
  82. matrix_integration_manager_ui_url: ~
  83. # The domain name where a Jitsi server is self-hosted.
  84. # If set, `/.well-known/matrix/client` will suggest Element clients to use that Jitsi server.
  85. # See: https://github.com/vector-im/element-web/blob/develop/docs/jitsi.md#configuring-element-to-use-your-self-hosted-jitsi-server
  86. matrix_client_element_jitsi_preferredDomain: ''
  87. # Controls whether Element should use End-to-End Encryption by default.
  88. # Setting this to false will update `/.well-known/matrix/client` and tell Element clients to avoid E2EE.
  89. # See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
  90. matrix_client_element_e2ee_default: true
  91. # Controls whether Element should require a secure backup set up before Element can be used.
  92. # Setting this to true will update `/.well-known/matrix/client` and tell Element require a secure backup.
  93. # See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
  94. matrix_client_element_e2ee_secure_backup_required: false
  95. # Controls which backup methods from ["key", "passphrase"] should be used, both is the default.
  96. # Setting this to other then empty will update `/.well-known/matrix/client` and tell Element which method to use
  97. # See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
  98. matrix_client_element_e2ee_secure_backup_setup_methods: []
  99. # Default `/.well-known/matrix/client` configuration - it covers the generic use case.
  100. # You can customize it by controlling the various variables inside the template file that it references.
  101. #
  102. # For a more advanced customization, you can extend the default (see `matrix_well_known_matrix_client_configuration_extension_json`)
  103. # or completely replace this variable with your own template.
  104. #
  105. # The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
  106. # This is unlike what it does when looking up YAML template files (no automatic parsing there).
  107. matrix_well_known_matrix_client_configuration_default: "{{ lookup('template', 'templates/static-files/well-known/matrix-client.j2') }}"
  108. # Your custom JSON configuration for `/.well-known/matrix/client` should go to `matrix_well_known_matrix_client_configuration_extension_json`.
  109. # This configuration extends the default starting configuration (`matrix_well_known_matrix_client_configuration_default`).
  110. #
  111. # You can override individual variables from the default configuration, or introduce new ones.
  112. #
  113. # If you need something more special, you can take full control by
  114. # completely redefining `matrix_well_known_matrix_client_configuration`.
  115. #
  116. # Example configuration extension follows:
  117. #
  118. # matrix_well_known_matrix_client_configuration_extension_json: |
  119. # {
  120. # "io.element.call_behaviour": {
  121. # "widget_build_url": "https://dimension.example.com/api/v1/dimension/bigbluebutton/widget_state"
  122. # }
  123. # }
  124. matrix_well_known_matrix_client_configuration_extension_json: '{}'
  125. 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 {} }}"
  126. # Holds the final `/.well-known/matrix/client` configuration (a combination of the default and its extension).
  127. # 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`.
  128. matrix_well_known_matrix_client_configuration: "{{ matrix_well_known_matrix_client_configuration_default|combine(matrix_well_known_matrix_client_configuration_extension, recursive=True) }}"
  129. # Default `/.well-known/matrix/server` configuration - it covers the generic use case.
  130. # You can customize it by controlling the various variables inside the template file that it references.
  131. #
  132. # For a more advanced customization, you can extend the default (see `matrix_well_known_matrix_server_configuration_extension_json`)
  133. # or completely replace this variable with your own template.
  134. #
  135. # The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
  136. # This is unlike what it does when looking up YAML template files (no automatic parsing there).
  137. matrix_well_known_matrix_server_configuration_default: "{{ lookup('template', 'templates/static-files/well-known/matrix-server.j2') }}"
  138. # Your custom JSON configuration for `/.well-known/matrix/server` should go to `matrix_well_known_matrix_server_configuration_extension_json`.
  139. # This configuration extends the default starting configuration (`matrix_well_known_matrix_server_configuration_default`).
  140. #
  141. # You can override individual variables from the default configuration, or introduce new ones.
  142. #
  143. # If you need something more special, you can take full control by
  144. # completely redefining `matrix_well_known_matrix_server_configuration`.
  145. #
  146. # Example configuration extension follows:
  147. #
  148. # matrix_well_known_matrix_server_configuration_extension_json: |
  149. # {
  150. # "something": "another"
  151. # }
  152. matrix_well_known_matrix_server_configuration_extension_json: '{}'
  153. 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 {} }}"
  154. # Holds the final `/.well-known/matrix/server` configuration (a combination of the default and its extension).
  155. # 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`.
  156. matrix_well_known_matrix_server_configuration: "{{ matrix_well_known_matrix_server_configuration_default|combine(matrix_well_known_matrix_server_configuration_extension, recursive=True) }}"
  157. # The Docker network that all services would be put into
  158. matrix_docker_network: "matrix"
  159. # Controls whether we'll preserve the vars.yml file on the Matrix server.
  160. # If you have a differently organized inventory, you may wish to disable this feature,
  161. # or to repoint `matrix_vars_yml_snapshotting_src` to the file you'd like to preserve.
  162. matrix_vars_yml_snapshotting_enabled: true
  163. matrix_vars_yml_snapshotting_src: "{{ inventory_dir }}/host_vars/{{ inventory_hostname }}/vars.yml"
  164. # Controls whether a `/.well-known/matrix/server` file is generated and used at all.
  165. #
  166. # If you wish to rely on DNS SRV records only, you can disable this.
  167. # Using DNS SRV records implies that you'll be handling Matrix Federation API traffic (tcp/8448)
  168. # using certificates for the base domain (`matrix_domain`) and not for the
  169. # matrix domain (`matrix_server_fqn_matrix`).
  170. matrix_well_known_matrix_server_enabled: true
  171. # Controls whether Docker is automatically installed.
  172. # 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.
  173. matrix_docker_installation_enabled: true
  174. # Controls the Docker package that is installed.
  175. # Possible values are "docker-ce" (default) and "docker.io" (Debian).
  176. matrix_docker_package_name: docker-ce
  177. # Variables to Control which parts of our roles run.
  178. run_postgres_import: true
  179. run_postgres_upgrade: true
  180. run_postgres_import_sqlite_db: true
  181. run_postgres_vacuum: true
  182. run_synapse_register_user: true
  183. run_synapse_update_user_password: true
  184. run_synapse_import_media_store: true
  185. run_synapse_rust_synapse_compress_state: true
  186. run_dendrite_register_user: true
  187. run_setup: true
  188. run_self_check: true
  189. run_start: true
  190. run_stop: true