Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

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