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

40 строки
1.2 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. # Variables to Control which parts of our roles run.
  22. run_setup: true
  23. run_import_postgres: true
  24. run_upgrade_postgres: true
  25. run_start: true
  26. run_register_user: true
  27. run_import_sqlite_db: true
  28. run_import_media_store: true
  29. run_self_check: true