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.
 
 

58 lines
3.4 KiB

  1. ---
  2. # E2EE aware proxy daemon for Matrix clients.
  3. # Project source code URL: https://github.com/matrix-org/pantalaimon
  4. matrix_pantalaimon_enabled: true
  5. matrix_pantalaimon_version: "0.10.5"
  6. matrix_pantalaimon_container_image_self_build: false
  7. matrix_pantalaimon_container_image_self_build_repo: "https://github.com/matrix-org/pantalaimon.git"
  8. matrix_pantalaimon_container_image_self_build_repo_version: "{{ 'main' if matrix_pantalaimon_version == 'latest' else matrix_pantalaimon_version }}"
  9. matrix_pantalaimon_docker_image: "{{ matrix_pantalaimon_docker_image_name_prefix }}matrixdotorg/pantalaimon:v{{ matrix_pantalaimon_version }}"
  10. matrix_pantalaimon_docker_image_name_prefix: "{{ 'localhost/' if matrix_pantalaimon_container_image_self_build else matrix_container_global_registry_prefix }}"
  11. matrix_pantalaimon_docker_image_force_pull: "{{ matrix_pantalaimon_docker_image.endswith(':latest') }}"
  12. matrix_pantalaimon_base_path: "{{ matrix_base_data_path }}/pantalaimon"
  13. matrix_pantalaimon_data_path: "{{ matrix_pantalaimon_base_path }}/data"
  14. matrix_pantalaimon_container_src_files_path: "{{ matrix_pantalaimon_base_path }}/container-src"
  15. # The base container network
  16. matrix_pantalaimon_container_network: ''
  17. # A list of additional container networks that the container would be connected to.
  18. # The role does not create these networks, so make sure they already exist.
  19. matrix_pantalaimon_container_additional_networks: "{{ matrix_pantalaimon_container_additional_networks_auto + matrix_pantalaimon_container_additional_networks_custom }}"
  20. matrix_pantalaimon_container_additional_networks_auto: []
  21. matrix_pantalaimon_container_additional_networks_custom: []
  22. # A list of extra arguments to pass to the container
  23. matrix_pantalaimon_container_extra_arguments: []
  24. # List of systemd services that matrix-pantalaimon.service depends on
  25. matrix_pantalaimon_systemd_required_services_list: "{{ matrix_pantalaimon_systemd_required_services_list_default + matrix_pantalaimon_systemd_required_services_list_auto + matrix_pantalaimon_systemd_required_services_list_custom }}"
  26. matrix_pantalaimon_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  27. matrix_pantalaimon_systemd_required_services_list_auto: []
  28. matrix_pantalaimon_systemd_required_services_list_custom: []
  29. # List of systemd services that matrix-pantalaimon.service wants
  30. matrix_pantalaimon_systemd_wanted_services_list: "{{ matrix_pantalaimon_systemd_wanted_services_list_default + matrix_pantalaimon_systemd_wanted_services_list_auto + matrix_pantalaimon_systemd_wanted_services_list_custom }}"
  31. matrix_pantalaimon_systemd_wanted_services_list_default: []
  32. matrix_pantalaimon_systemd_wanted_services_list_auto: []
  33. matrix_pantalaimon_systemd_wanted_services_list_custom: []
  34. # Valid values: Error, Warning, Info, Debug
  35. matrix_pantalaimon_log_level: Warning
  36. # Base URL where matrix-pantalaimon can reach your homeserver C-S API.
  37. # If the homeserver runs on the same machine, you may need to add its service to `matrix_pantalaimon_systemd_required_services_list`.
  38. matrix_pantalaimon_homeserver_url: ""
  39. # Default configuration template which covers the generic use case.
  40. # You can customize it by controlling the various variables inside it.
  41. #
  42. # For a more advanced customization, you can
  43. # completely replace this variable with your own template.
  44. matrix_pantalaimon_configuration: "{{ lookup('template', 'templates/pantalaimon.conf.j2') }}"