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.
 
 

133 lines
5.7 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 is where your data lives and what we set up.
  10. # This and the Element FQN (see below) are expected to be on the same server.
  11. matrix_server_fqn_matrix: "matrix.{{ matrix_domain }}"
  12. # This is where you access the Element web UI from (if enabled via matrix_client_element_enabled; enabled by default).
  13. # This and the Matrix FQN (see above) are expected to be on the same server.
  14. matrix_server_fqn_element: "element.{{ matrix_domain }}"
  15. # This is where you access the Dimension.
  16. matrix_server_fqn_dimension: "dimension.{{ matrix_domain }}"
  17. # This is where you access Jitsi.
  18. matrix_server_fqn_jitsi: "jitsi.{{ matrix_domain }}"
  19. matrix_federation_public_port: 8448
  20. # The architecture that your server runs.
  21. # Recognized values by us are 'amd64', 'arm32' and 'arm64'.
  22. # Not all architectures support all services, so your experience (on non-amd64) may vary.
  23. # See docs/alternative-architectures.md
  24. matrix_architecture: amd64
  25. # The architecture for Debian packages.
  26. # See: https://wiki.debian.org/SupportedArchitectures
  27. # We just remap from our `matrix_architecture` values to what Debian and possibly other distros call things.
  28. matrix_debian_arch: "{{ 'armhf' if matrix_architecture == 'arm32' else matrix_architecture }}"
  29. matrix_user_username: "matrix"
  30. matrix_user_groupname: "matrix"
  31. # By default, the playbook creates the user (`matrix_user_username`)
  32. # and group (`matrix_user_groupname`) with a random id.
  33. # To use a specific user/group id, override these variables.
  34. matrix_user_uid: ~
  35. matrix_user_gid: ~
  36. matrix_base_data_path: "/matrix"
  37. matrix_base_data_path_mode: "750"
  38. matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files"
  39. matrix_systemd_path: "/etc/systemd/system"
  40. # This is now unused. We keep it so that cleanup tasks can use it.
  41. # To be removed in the future.
  42. matrix_cron_path: "/etc/cron.d"
  43. matrix_local_bin_path: "/usr/local/bin"
  44. matrix_host_command_docker: "/usr/bin/env docker"
  45. matrix_host_command_sleep: "/usr/bin/env sleep"
  46. matrix_host_command_chown: "/usr/bin/env chown"
  47. matrix_host_command_fusermount: "/usr/bin/env fusermount"
  48. matrix_host_command_openssl: "/usr/bin/env openssl"
  49. matrix_host_command_systemctl: "/usr/bin/env systemctl"
  50. matrix_ntpd_package: "ntp"
  51. matrix_ntpd_service: "{{ 'ntpd' if ansible_os_family == 'RedHat' or ansible_distribution == 'Archlinux' else 'ntp' }}"
  52. matrix_homeserver_url: "https://{{ matrix_server_fqn_matrix }}"
  53. matrix_identity_server_url: ~
  54. matrix_integration_manager_rest_url: ~
  55. matrix_integration_manager_ui_url: ~
  56. # The domain name where a Jitsi server is self-hosted.
  57. # If set, `/.well-known/matrix/client` will suggest Element clients to use that Jitsi server.
  58. # See: https://github.com/vector-im/element-web/blob/develop/docs/jitsi.md#configuring-element-to-use-your-self-hosted-jitsi-server
  59. matrix_client_element_jitsi_preferredDomain: ''
  60. # Controls whether Element should use End-to-End Encryption by default.
  61. # Setting this to false will update `/.well-known/matrix/client` and tell Element clients to avoid E2EE.
  62. # See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
  63. matrix_client_element_e2ee_default: true
  64. # Controls whether Element should require a secure backup set up before Element can be used.
  65. # Setting this to true will update `/.well-known/matrix/client` and tell Element require a secure backup.
  66. # See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
  67. matrix_client_element_e2ee_secure_backup_required: false
  68. # Controls which backup methods from ["key", "passphrase"] should be used, both is the default.
  69. # Setting this to other then empty will update `/.well-known/matrix/client` and tell Element which method to use
  70. # See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
  71. matrix_client_element_e2ee_secure_backup_setup_methods: []
  72. # The Docker network that all services would be put into
  73. matrix_docker_network: "matrix"
  74. # Controls whether we'll preserve the vars.yml file on the Matrix server.
  75. # If you have a differently organized inventory, you may wish to disable this feature,
  76. # or to repoint `matrix_vars_yml_snapshotting_src` to the file you'd like to preserve.
  77. matrix_vars_yml_snapshotting_enabled: true
  78. matrix_vars_yml_snapshotting_src: "{{ inventory_dir }}/host_vars/{{ inventory_hostname }}/vars.yml"
  79. # Controls whether a `/.well-known/matrix/server` file is generated and used at all.
  80. #
  81. # If you wish to rely on DNS SRV records only, you can disable this.
  82. # Using DNS SRV records implies that you'll be handling Matrix Federation API traffic (tcp/8448)
  83. # using certificates for the base domain (`matrix_domain`) and not for the
  84. # matrix domain (`matrix_server_fqn_matrix`).
  85. matrix_well_known_matrix_server_enabled: true
  86. # Controls whether Docker is automatically installed.
  87. # 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.
  88. matrix_docker_installation_enabled: true
  89. # Controls the Docker package that is installed.
  90. # Possible values are "docker-ce" (default) and "docker.io" (Debian).
  91. matrix_docker_package_name: docker-ce
  92. # Variables to Control which parts of our roles run.
  93. run_postgres_import: true
  94. run_postgres_upgrade: true
  95. run_postgres_import_sqlite_db: true
  96. run_postgres_vacuum: true
  97. run_synapse_register_user: true
  98. run_synapse_update_user_password: true
  99. run_synapse_import_media_store: true
  100. run_synapse_rust_synapse_compress_state: true
  101. run_setup: true
  102. run_self_check: true
  103. run_start: true
  104. run_stop: true