2020-09-25 11:13:11 +02:00
|
|
|
# Log level. Useful for troubleshooting. Possible values: error, info, debug, trace
|
2020-08-16 13:57:57 +02:00
|
|
|
LogLevel = "INFO"
|
2020-09-25 11:13:11 +02:00
|
|
|
|
|
|
|
# IP address the server will bind to
|
2020-08-16 13:57:57 +02:00
|
|
|
Address = "127.0.0.1"
|
2020-09-25 11:13:11 +02:00
|
|
|
|
|
|
|
# HTTP port Navidrome will use
|
2020-08-16 13:57:57 +02:00
|
|
|
Port = "__PORT__"
|
2020-09-25 11:13:11 +02:00
|
|
|
|
|
|
|
# Base URL (only the path part) to configure Navidrome behind a proxy (ex: /music)
|
2020-08-17 09:39:29 +02:00
|
|
|
BaseURL = "__PATH_URL__"
|
2020-09-25 11:13:11 +02:00
|
|
|
|
|
|
|
# How frequently to scan for changes in your music library. Set it to 0 to disable scans
|
2020-08-16 13:57:57 +02:00
|
|
|
ScanInterval = "90s"
|
2020-09-25 11:13:11 +02:00
|
|
|
|
|
|
|
# Size of transcoding cache. Set to 0 to disable cache
|
2020-08-16 13:57:57 +02:00
|
|
|
TranscodingCacheSize = "150MiB"
|
2020-09-25 11:13:11 +02:00
|
|
|
|
|
|
|
# Folder to store application data (DB, cache…)
|
2020-08-19 12:03:30 +02:00
|
|
|
DataFolder = "__CONFIG_PATH__"
|
2020-09-25 11:13:11 +02:00
|
|
|
|
|
|
|
# Folder where your music library is stored. Can be read-only
|
|
|
|
MusicFolder = "/home/yunohost.multimedia/share/Music"
|
|
|
|
|
|
|
|
# How long Navidrome will wait before closing web ui idle sessions
|
|
|
|
SessionTimeout = "24h"
|
|
|
|
|
|
|
|
# Set JPEG quality percentage for resized cover art images
|
|
|
|
CoverJpegQuality = "75"
|
|
|
|
|
|
|
|
#Configure the order to look for cover art images. Use special embedded value to get embedded images from the audio files
|
|
|
|
CoverArtPriority = "embedded, cover.*, folder.*, front.*"
|
|
|
|
|
|
|
|
# Match query strings anywhere in searchable fields, not only in word boundaries. Useful for languages where words are not space separated
|
|
|
|
SearchFullString = "false"
|
|
|
|
|
|
|
|
# List of ignored articles when sorting/indexing artists
|
|
|
|
IgnoredArticles = "The El La Los Las Le Les Os As O A"
|
|
|
|
|
|
|
|
# Enable/disable .m3u playlist auto-import
|
|
|
|
AutoImportPlaylists = "true"
|
|
|
|
|
|
|
|
# The default metadata extractor is still ffmpeg but you can use the new taglib extractor
|
|
|
|
Scanner.Extractor = "taglib"
|