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.
 
 

76 lines
3.5 KiB

  1. # Sygnal is a reference Push Gateway for Matrix.
  2. # To make use of it for delivering push notificatins, you'll need to develop/build your own Matrix app.
  3. # Learn more here: https://github.com/matrix-org/sygnal
  4. matrix_sygnal_enabled: false
  5. matrix_sygnal_base_path: "{{ matrix_base_data_path }}/sygnal"
  6. matrix_sygnal_config_path: "{{ matrix_sygnal_base_path }}/config"
  7. matrix_sygnal_data_path: "{{ matrix_sygnal_base_path }}/data"
  8. matrix_sygnal_version: v0.10.1
  9. matrix_sygnal_docker_image: "{{ matrix_container_global_registry_prefix }}matrixdotorg/sygnal:{{ matrix_sygnal_version }}"
  10. matrix_sygnal_docker_image_force_pull: "{{ matrix_sygnal_docker_image.endswith(':latest') }}"
  11. # List of systemd services that matrix-sygnal.service depends on.
  12. matrix_sygnal_systemd_required_services_list: ['docker.service']
  13. # List of systemd services that matrix-sygnal.service wants
  14. matrix_sygnal_systemd_wanted_services_list: []
  15. # Controls whether the matrix-sygnal container exposes its HTTP port (tcp/6000 in the container).
  16. #
  17. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:6000"), or empty string to not expose.
  18. matrix_sygnal_container_http_host_bind_port: ''
  19. # A list of extra arguments to pass to the container
  20. matrix_sygnal_container_extra_arguments: []
  21. # A map (dictionary) of apps instances that this server works with.
  22. #
  23. # Example configuration:
  24. #
  25. # matrix_sygnal_apps:
  26. # com.example.myapp.ios:
  27. # type: apns
  28. # # .. more configuration ..
  29. # com.example.myapp.android:
  30. # type: gcm
  31. # api_key: your_api_key_for_gcm
  32. # # .. more configuration ..
  33. #
  34. # The APNS configuration needs to reference some certificate files.
  35. # One can put these in the `matrix_sygnal_data_path` directory (`/matrix/sygnal/data`), mounted to `/data` in the container.
  36. # The `matrix_sygnal_apps` paths need to use the in-container path (`/data`).
  37. # To install these files via the playbook, one can use the `matrix-aux` role.
  38. # Examples and more details are available in `docs/configuring-playbook-sygnal.md`.
  39. matrix_sygnal_apps: []
  40. matrix_sygnal_metrics_prometheus_enabled: false
  41. # Default Sygnal configuration template which covers the generic use case.
  42. # You can customize it by controlling the various variables inside it.
  43. #
  44. # For a more advanced customization, you can extend the default (see `matrix_sygnal_configuration_extension_yaml`)
  45. # or completely replace this variable with your own template.
  46. matrix_sygnal_configuration_yaml: "{{ lookup('template', 'templates/sygnal.yaml.j2') }}"
  47. matrix_sygnal_configuration_extension_yaml: |
  48. # Your custom YAML configuration for Sygnal goes here.
  49. # This configuration extends the default starting configuration (`matrix_sygnal_configuration_yaml`).
  50. #
  51. # You can override individual variables from the default configuration, or introduce new ones.
  52. #
  53. # If you need something more special, you can take full control by
  54. # completely redefining `matrix_sygnal_configuration_yaml`.
  55. #
  56. # Example configuration extension follows:
  57. # metrics:
  58. # opentracing:
  59. # enabled: true
  60. matrix_sygnal_configuration_extension: "{{ matrix_sygnal_configuration_extension_yaml|from_yaml if matrix_sygnal_configuration_extension_yaml|from_yaml is mapping else {} }}"
  61. # Holds the final sygnal configuration (a combination of the default and its extension).
  62. # You most likely don't need to touch this variable. Instead, see `matrix_sygnal_configuration_yaml`.
  63. matrix_sygnal_configuration: "{{ matrix_sygnal_configuration_yaml|from_yaml|combine(matrix_sygnal_configuration_extension, recursive=True) }}"