Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
ad30a8307f
commit
f418990e84
85 changed files with 3520 additions and 2 deletions
84
roles/navidrome/defaults/main.yml
Normal file
84
roles/navidrome/defaults/main.yml
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
---
|
||||
|
||||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue