2022-06-21 13:31:21 +00:00
---
2022-07-16 20:59:21 +00:00
# Project source code URL: https://github.com/binwiederhier/ntfy
2022-06-21 13:31:21 +00:00
matrix_ntfy_enabled : true
matrix_ntfy_base_path : "{{ matrix_base_data_path }}/ntfy"
2022-07-04 20:30:29 +00:00
matrix_ntfy_config_dir_path : "{{ matrix_ntfy_base_path }}/config"
2022-07-02 16:35:53 +00:00
matrix_ntfy_data_path : "{{ matrix_ntfy_base_path }}/data"
2022-06-21 13:31:21 +00:00
matrix_ntfy_version : v1.27.2
matrix_ntfy_docker_image : "{{ matrix_container_global_registry_prefix }}binwiederhier/ntfy:{{ matrix_ntfy_version }}"
matrix_ntfy_docker_image_force_pull : "{{ matrix_ntfy_docker_image.endswith(':latest') }}"
2022-07-04 14:27:23 +00:00
# Public facing base URL of the ntfy service
matrix_ntfy_base_url : "https://{{ matrix_server_fqn_ntfy }}"
2022-07-05 20:11:15 +00:00
# Controls whether the container exposes its HTTP port (tcp/80 in the container).
2022-06-21 13:31:21 +00:00
#
2022-07-05 20:11:15 +00:00
# Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:2586"), or empty string to not expose.
2022-06-21 13:31:21 +00:00
matrix_ntfy_container_http_host_bind_port : ''
2022-06-27 21:20:02 +00:00
# A list of extra arguments to pass to the container (`docker run` command)
2022-06-21 13:31:21 +00:00
matrix_ntfy_container_extra_arguments : [ ]
2022-06-29 09:48:40 +00:00
# Controls whether the self-check feature should validate SSL certificates.
matrix_ntfy_self_check_validate_certificates : true
2022-07-04 20:30:29 +00:00
# Default ntfy configuration template which covers the generic use case.
# You can customize it by controlling the various variables inside it.
#
# For a more advanced customization, you can extend the default (see `matrix_ntfy_configuration_extension_yaml`)
# or completely replace this variable with your own template.
matrix_ntfy_configuration_yaml : "{{ lookup('template', 'templates/ntfy/server.yml.j2') }}"
matrix_ntfy_configuration_extension_yaml : |
# Your custom YAML configuration for ntfy goes here.
# This configuration extends the default starting configuration (`matrix_ntfy_configuration_yaml`).
#
# You can override individual variables from the default configuration, or introduce new ones.
#
# If you need something more special, you can take full control by
# completely redefining `matrix_ntfy_configuration_yaml`.
matrix_ntfy_configuration_extension : "{{ matrix_ntfy_configuration_extension_yaml|from_yaml if matrix_ntfy_configuration_extension_yaml|from_yaml is mapping else {} }}"
# Holds the final ntfy configuration (a combination of the default and its extension).
# You most likely don't need to touch this variable. Instead, see `matrix_ntfy_configuration_yaml`.
matrix_ntfy_configuration : "{{ matrix_ntfy_configuration_yaml|from_yaml|combine(matrix_ntfy_configuration_extension, recursive=True) }}"