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.

66 lines
2.3 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. matrix_user_username: "matrix"
  18. matrix_user_uid: 991
  19. matrix_user_gid: 991
  20. matrix_base_data_path: "/matrix"
  21. matrix_base_data_path_mode: "750"
  22. matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files"
  23. matrix_homeserver_url: "https://{{ matrix_server_fqn_matrix }}"
  24. matrix_identity_server_url: ~
  25. # The Docker network that all services would be put into
  26. matrix_docker_network: "matrix"
  27. # Controls whether a `/.well-known/matrix/server` file is generated and used at all.
  28. #
  29. # If you wish to rely on DNS SRV records only, you can disable this.
  30. # Using DNS SRV records implies that you'll be handling Matrix Federation API traffic (tcp/8448)
  31. # using certificates for the base domain (`matrix_domain`) and not for the
  32. # matrix domain (`matrix_server_fqn_matrix`).
  33. matrix_well_known_matrix_server_enabled: true
  34. # Controls whether Docker is automatically installed.
  35. # If you change this to false you must install and update Docker manually.
  36. matrix_docker_installation_enabled: true
  37. # Controls the Docker package that is installed.
  38. # Possible values are "docker-ce" (default) and "docker.io" (Debian).
  39. matrix_docker_package_name: docker-ce
  40. # Variables to Control which parts of our roles run.
  41. run_postgres_import: true
  42. run_postgres_upgrade: true
  43. run_postgres_import_sqlite_db: true
  44. run_postgres_synapse_janitor: true
  45. run_postgres_vacuum: true
  46. run_synapse_register_user: true
  47. run_synapse_update_user_password: true
  48. run_synapse_import_media_store: true
  49. run_setup: true
  50. run_self_check: true
  51. run_start: true
  52. run_stop: true