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

91 строка
3.4 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_user_username: "matrix"
  20. matrix_user_groupname: "matrix"
  21. matrix_base_data_path: "/matrix"
  22. matrix_base_data_path_mode: "750"
  23. matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files"
  24. matrix_systemd_path: "/etc/systemd/system"
  25. matrix_cron_path: "/etc/cron.d"
  26. matrix_local_bin_path: "/usr/local/bin"
  27. matrix_host_command_docker: "/usr/bin/env docker"
  28. matrix_host_command_sleep: "/usr/bin/env sleep"
  29. matrix_host_command_chown: "/usr/bin/env chown"
  30. matrix_host_command_fusermount: "/usr/bin/env fusermount"
  31. matrix_ntpd_package: "ntp"
  32. matrix_ntpd_service: "{{ 'ntpd' if ansible_os_family == 'RedHat' or ansible_distribution == 'Archlinux' else 'ntp' }}"
  33. matrix_homeserver_url: "https://{{ matrix_server_fqn_matrix }}"
  34. matrix_identity_server_url: ~
  35. matrix_integration_manager_rest_url: ~
  36. matrix_integration_manager_ui_url: ~
  37. # The domain name where a Jitsi server is self-hosted.
  38. # If set, `/.well-known/matrix/client` will suggest Riot clients to use that Jitsi server.
  39. # See: https://github.com/vector-im/riot-web/blob/develop/docs/jitsi.md#configuring-riot-to-use-your-self-hosted-jitsi-server
  40. matrix_riot_jitsi_preferredDomain: ''
  41. # The Docker network that all services would be put into
  42. matrix_docker_network: "matrix"
  43. # Controls whether a `/.well-known/matrix/server` file is generated and used at all.
  44. #
  45. # If you wish to rely on DNS SRV records only, you can disable this.
  46. # Using DNS SRV records implies that you'll be handling Matrix Federation API traffic (tcp/8448)
  47. # using certificates for the base domain (`matrix_domain`) and not for the
  48. # matrix domain (`matrix_server_fqn_matrix`).
  49. matrix_well_known_matrix_server_enabled: true
  50. # Controls whether Docker is automatically installed.
  51. # If you change this to false you must install and update Docker manually.
  52. matrix_docker_installation_enabled: true
  53. # Controls the Docker package that is installed.
  54. # Possible values are "docker-ce" (default) and "docker.io" (Debian).
  55. matrix_docker_package_name: docker-ce
  56. # Variables to Control which parts of our roles run.
  57. run_postgres_import: true
  58. run_postgres_upgrade: true
  59. run_postgres_import_sqlite_db: true
  60. run_postgres_synapse_janitor: true
  61. run_postgres_vacuum: true
  62. run_synapse_register_user: true
  63. run_synapse_update_user_password: true
  64. run_synapse_import_media_store: true
  65. run_setup: true
  66. run_self_check: true
  67. run_start: true
  68. run_stop: true
  69. # Building every docker image from source on the target host
  70. # Controlling docker image build is possible on a per unit base
  71. matrix_container_images_self_build: false