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.
 
 

51 wiersze
1.8 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. matrix_user_username: "matrix"
  16. matrix_user_uid: 991
  17. matrix_user_gid: 991
  18. matrix_base_data_path: "/matrix"
  19. matrix_base_data_path_mode: "750"
  20. matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files"
  21. matrix_homeserver_url: "https://{{ matrix_server_fqn_matrix }}"
  22. matrix_identity_server_url: ~
  23. # The Docker network that all services would be put into
  24. matrix_docker_network: "matrix"
  25. # Controls whether a `/.well-known/matrix/server` file is generated and used at all.
  26. #
  27. # If you wish to rely on DNS SRV records only, you can disable this.
  28. # Using DNS SRV records implies that you'll be handling Matrix Federation API traffic (tcp/8448)
  29. # using certificates for the base domain (`matrix_domain`) and not for the
  30. # matrix domain (`matrix_server_fqn_matrix`).
  31. matrix_well_known_matrix_server_enabled: true
  32. # Variables to Control which parts of our roles run.
  33. run_setup: true
  34. run_import_postgres: true
  35. run_upgrade_postgres: true
  36. run_start: true
  37. run_register_user: true
  38. run_import_sqlite_db: true
  39. run_import_media_store: true
  40. run_self_check: true