Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 

48 строки
1.6 KiB

  1. # The bare hostname which represents your identity.
  2. # This is something like "example.com".
  3. # Note: this playbook does not touch the server referenced here.
  4. hostname_identity: "{{ host_specific_hostname_identity|lower }}"
  5. # This is where your data lives and what we set up here.
  6. # This and the Riot hostname (see below) are expected to be on the same server.
  7. hostname_matrix: "matrix.{{ hostname_identity }}"
  8. # This is where you access the web UI from and what we set up here.
  9. # This and the Matrix hostname (see above) are expected to be on the same server.
  10. hostname_riot: "riot.{{ hostname_identity }}"
  11. matrix_user_username: "matrix"
  12. matrix_user_uid: 991
  13. matrix_user_gid: 991
  14. matrix_base_data_path: "/matrix"
  15. matrix_base_data_path_mode: "750"
  16. matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files"
  17. matrix_homeserver_url: "https://{{ hostname_matrix }}"
  18. matrix_identity_server_url: ~
  19. # The Docker network that all services would be put into
  20. matrix_docker_network: "matrix"
  21. # Controls whether a `/.well-known/matrix/server` file is generated and used at all.
  22. #
  23. # If you wish to rely on DNS SRV records only, you can disable this.
  24. # That implies that you'll be handling Matrix Federation API traffic (tcp/8448)
  25. # using certificates for the base domain (`hostname_identity`) and not for the
  26. # matrix domain (`hostname_matrix`).
  27. matrix_well_known_matrix_server_enabled: true
  28. # Variables to Control which parts of our roles run.
  29. run_setup: true
  30. run_import_postgres: true
  31. run_upgrade_postgres: true
  32. run_start: true
  33. run_register_user: true
  34. run_import_sqlite_db: true
  35. run_import_media_store: true
  36. run_self_check: true