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.
 
 

50 lines
2.0 KiB

  1. ---
  2. # Conduit is a simple, fast and reliable chat server powered by Matrix
  3. # See: https://conduit.rs
  4. matrix_conduit_enabled: true
  5. matrix_conduit_docker_image: "{{ matrix_conduit_docker_image_name_prefix}}matrixconduit/matrix-conduit:{{ matrix_conduit_docker_image_tag }}"
  6. matrix_conduit_docker_image_name_prefix: "docker.io/"
  7. matrix_conduit_docker_image_tag: "v0.4.0"
  8. matrix_conduit_docker_image_force_pull: "{{ matrix_conduit_docker_image.endswith(':latest') }}"
  9. matrix_conduit_base_path: "{{ matrix_base_data_path }}/conduit"
  10. matrix_conduit_config_dir_path: "{{ matrix_conduit_base_path }}/config"
  11. matrix_conduit_storage_path: "{{ matrix_conduit_base_path }}/storage"
  12. matrix_conduit_port_number: 6167
  13. # List of systemd services that matrix-conduit.service depends on
  14. matrix_conduit_systemd_required_services_list: ["docker.service"]
  15. # List of systemd services that matrix-conduit.service wants
  16. matrix_conduit_systemd_wanted_services_list: []
  17. # Extra arguments for the Docker container
  18. matrix_conduit_container_extra_arguments: []
  19. # Specifies which template files to use when configuring Conduit.
  20. # If you'd like to have your own different configuration, feel free to copy and paste
  21. # the original files into your inventory (e.g. in `inventory/host_vars/<host>/`)
  22. # and then change the specific host's `vars.yaml` file like this:
  23. # matrix_conduit_template_conduit_config: "{{ playbook_dir }}/inventory/host_vars/<host>/conduit.yaml.j2"
  24. matrix_conduit_template_conduit_config: "{{ role_path }}/templates/conduit/conduit.toml.j2"
  25. # Max size for uploads, in bytes
  26. matrix_conduit_max_request_size: "20_000_000"
  27. # Enables registration. If set to false, no users can register on this server.
  28. matrix_conduit_allow_registration: true
  29. matrix_conduit_allow_federation: true
  30. # Enable the display name lightning bolt on registration.
  31. matrix_conduit_enable_lightning_bolt: true
  32. matrix_conduit_trusted_servers:
  33. - "matrix.org"
  34. # How many requests Conduit sends to other servers at the same time
  35. matrix_conduit_max_concurrent_requests: 100