Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

74 行
3.1 KiB

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