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.
 
 

102 line
4.0 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 Riot 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 web UI from and what we set up here.
  13. # This and the Matrix FQN (see above) are expected to be on the same server.
  14. matrix_server_fqn_riot: "riot.{{ 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. matrix_user_username: "matrix"
  21. matrix_user_groupname: "matrix"
  22. matrix_base_data_path: "/matrix"
  23. matrix_base_data_path_mode: "750"
  24. matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files"
  25. matrix_systemd_path: "/etc/systemd/system"
  26. matrix_cron_path: "/etc/cron.d"
  27. matrix_local_bin_path: "/usr/local/bin"
  28. matrix_host_command_docker: "/usr/bin/env docker"
  29. matrix_host_command_sleep: "/usr/bin/env sleep"
  30. matrix_host_command_chown: "/usr/bin/env chown"
  31. matrix_host_command_fusermount: "/usr/bin/env fusermount"
  32. matrix_host_command_openssl: "/usr/bin/env openssl"
  33. matrix_host_command_systemctl: "/usr/bin/env systemctl"
  34. matrix_ntpd_package: "ntp"
  35. matrix_ntpd_service: "{{ 'ntpd' if ansible_os_family == 'RedHat' or ansible_distribution == 'Archlinux' else 'ntp' }}"
  36. matrix_homeserver_url: "https://{{ matrix_server_fqn_matrix }}"
  37. matrix_identity_server_url: ~
  38. matrix_integration_manager_rest_url: ~
  39. matrix_integration_manager_ui_url: ~
  40. # The domain name where a Jitsi server is self-hosted.
  41. # If set, `/.well-known/matrix/client` will suggest Riot clients to use that Jitsi server.
  42. # See: https://github.com/vector-im/riot-web/blob/develop/docs/jitsi.md#configuring-riot-to-use-your-self-hosted-jitsi-server
  43. matrix_riot_jitsi_preferredDomain: ''
  44. # Controls whether Riot should use End-to-End Encryption by default.
  45. # Setting this to false will update `/.well-known/matrix/client` and tell Riot clients to avoid E2EE.
  46. # See: https://github.com/vector-im/riot-web/blob/develop/docs/e2ee.md
  47. matrix_riot_e2ee_default: true
  48. # The Docker network that all services would be put into
  49. matrix_docker_network: "matrix"
  50. # Controls whether we'll preserve the vars.yml file on the Matrix server.
  51. # If you have a differently organized inventory, you may wish to disable this feature,
  52. # or to repoint `matrix_vars_yml_snapshotting_src` to the file you'd like to preserve.
  53. matrix_vars_yml_snapshotting_enabled: true
  54. matrix_vars_yml_snapshotting_src: "{{ inventory_dir }}/host_vars/{{ inventory_hostname }}/vars.yml"
  55. # Controls whether a `/.well-known/matrix/server` file is generated and used at all.
  56. #
  57. # If you wish to rely on DNS SRV records only, you can disable this.
  58. # Using DNS SRV records implies that you'll be handling Matrix Federation API traffic (tcp/8448)
  59. # using certificates for the base domain (`matrix_domain`) and not for the
  60. # matrix domain (`matrix_server_fqn_matrix`).
  61. matrix_well_known_matrix_server_enabled: true
  62. # Controls whether Docker is automatically installed.
  63. # If you change this to false you must install and update Docker manually.
  64. matrix_docker_installation_enabled: true
  65. # Controls the Docker package that is installed.
  66. # Possible values are "docker-ce" (default) and "docker.io" (Debian).
  67. matrix_docker_package_name: docker-ce
  68. # Variables to Control which parts of our roles run.
  69. run_postgres_import: true
  70. run_postgres_upgrade: true
  71. run_postgres_import_sqlite_db: true
  72. run_postgres_synapse_janitor: true
  73. run_postgres_vacuum: true
  74. run_synapse_register_user: true
  75. run_synapse_update_user_password: true
  76. run_synapse_import_media_store: true
  77. run_setup: true
  78. run_self_check: true
  79. run_start: true
  80. run_stop: true