Some checks failed
/ ansible-docsmith (push) Failing after 24s
Signed-off-by: Julien Riou <julien@riou.xyz>
84 lines
1.5 KiB
YAML
84 lines
1.5 KiB
YAML
---
|
|
|
|
# Version of the debian package.
|
|
#
|
|
# - Type: str
|
|
# - Required: No
|
|
# - Default: 0.54.5
|
|
navidrome_version: 0.54.5
|
|
|
|
# Architecture of the debian package.
|
|
#
|
|
# - Type: str
|
|
# - Required: No
|
|
# - Default: amd64
|
|
navidrome_arch: amd64
|
|
|
|
# Operating system user to run the service.
|
|
#
|
|
# - Type: str
|
|
# - Required: No
|
|
# - Default: navidrome
|
|
navidrome_user: navidrome
|
|
|
|
# Operating system group to run the service.
|
|
#
|
|
# - Type: str
|
|
# - Required: No
|
|
# - Default: navidrome
|
|
navidrome_group: navidrome
|
|
|
|
# Path to the music folder.
|
|
#
|
|
# - Type: path
|
|
# - Required: No
|
|
# - Default: /opt/navidrome/music
|
|
navidrome_music_folder: /opt/navidrome/music
|
|
|
|
# Path to the data directory.
|
|
#
|
|
# - Type: path
|
|
# - Required: No
|
|
# - Default: /var/lib/navidrome
|
|
navidrome_data_folder: /var/lib/navidrome
|
|
|
|
# Path to the cache folder.
|
|
#
|
|
# - Type: path
|
|
# - Required: No
|
|
# - Default: {{ navidrome_data_folder }}/cache
|
|
navidrome_cache_folder: "{{ navidrome_data_folder }}/cache"
|
|
|
|
# Configure iptables rules
|
|
#
|
|
# - Type: bool
|
|
# - Required: No
|
|
# - Default: false
|
|
navidrome_manage_iptables: false
|
|
|
|
# List of IP ranges to allow when `navidrome_manage_iptables` is enabled
|
|
#
|
|
# - Type: list
|
|
# - Required: No
|
|
navidrome_allowed_sources: []
|
|
|
|
# Address to listen.
|
|
#
|
|
# - Type: str
|
|
# - Required: No
|
|
# - Default: localhost
|
|
navidrome_address: localhost
|
|
|
|
# Port to listen
|
|
#
|
|
# - Type: int
|
|
# - Required: No
|
|
# - Default: 4533
|
|
navidrome_port: 4533
|
|
|
|
# Enable the insights collector.
|
|
#
|
|
# - Type: bool
|
|
# - Required: No
|
|
# - Default: false
|
|
navidrome_enable_insights_collector: false
|