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.
 
 

69 lines
3.1 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. # renovate: datasource=docker depName=matrixconduit/matrix-conduit
  8. matrix_conduit_docker_image_tag: "v0.6.0"
  9. matrix_conduit_docker_image_force_pull: "{{ matrix_conduit_docker_image.endswith(':latest') }}"
  10. matrix_conduit_base_path: "{{ matrix_base_data_path }}/conduit"
  11. matrix_conduit_config_path: "{{ matrix_conduit_base_path }}/config"
  12. matrix_conduit_data_path: "{{ matrix_conduit_base_path }}/data"
  13. matrix_conduit_port_number: 6167
  14. matrix_conduit_tmp_directory_size_mb: 500
  15. # List of systemd services that matrix-conduit.service depends on
  16. matrix_conduit_systemd_required_services_list: "{{ matrix_conduit_systemd_required_services_list_default + matrix_conduit_systemd_required_services_list_auto + matrix_conduit_systemd_required_services_list_custom }}"
  17. matrix_conduit_systemd_required_services_list_default: ["docker.service"]
  18. matrix_conduit_systemd_required_services_list_auto: []
  19. matrix_conduit_systemd_required_services_list_custom: []
  20. # List of systemd services that matrix-conduit.service wants
  21. matrix_conduit_systemd_wanted_services_list: []
  22. # The base container network. It will be auto-created by this role if it doesn't exist already.
  23. matrix_conduit_container_network: ""
  24. # A list of additional container networks that the container would be connected to.
  25. # The role does not create these networks, so make sure they already exist.
  26. # Use this to expose this container to another reverse proxy, which runs in a different container network.
  27. matrix_conduit_container_additional_networks: []
  28. # Extra arguments for the Docker container
  29. matrix_conduit_container_extra_arguments: []
  30. # Specifies which template files to use when configuring Conduit.
  31. # If you'd like to have your own different configuration, feel free to copy and paste
  32. # the original files into your inventory (e.g. in `inventory/host_vars/<host>/`)
  33. # and then change the specific host's `vars.yaml` file like this:
  34. # matrix_conduit_template_conduit_config: "{{ playbook_dir }}/inventory/host_vars/<host>/conduit.yaml.j2"
  35. matrix_conduit_template_conduit_config: "{{ role_path }}/templates/conduit/conduit.toml.j2"
  36. # Max size for uploads, in bytes
  37. matrix_conduit_max_request_size: 20_000_000
  38. # Maximum number of open files for Conduit's embedded RocksDB database
  39. # See https://github.com/facebook/rocksdb/wiki/RocksDB-Tuning-Guide#tuning-other-options
  40. # By default, Conduit uses a relatively low value of 20.
  41. matrix_conduit_rocksdb_max_open_files: 64
  42. # Enables registration. If set to false, no users can register on this server.
  43. matrix_conduit_allow_registration: false
  44. matrix_conduit_allow_federation: true
  45. # Enable the display name lightning bolt on registration.
  46. matrix_conduit_enable_lightning_bolt: true
  47. matrix_conduit_trusted_servers:
  48. - "matrix.org"
  49. # How many requests Conduit sends to other servers at the same time
  50. matrix_conduit_max_concurrent_requests: 100