-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpd.conf.template
30 lines (27 loc) · 1003 Bytes
/
mpd.conf.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# This configuration file only contains the bare minimum of settings necessary
# to run MPD.
# You can change these settings and add new ones but mind the non-modifiable
# settings at the end of this file.
# For available options see
# [MPD User’s Manual](https://www.musicpd.org/doc/html/user.html#configuration)
# and the vanilla `/etc/mpd.conf` file inside the Docker container.
bind_to_address "::"
audio_output {
type "alsa"
name "ALSA Device"
# If no further settings are provided here, MPD tries to autodetect an
# ALSA device
# device "hw:0,0"
# mixer_type "none" # `none` for bit-perfect playback
}
# The following *non-modifiable* settings are necessary for the correct setup
# of this project.
# **Do not change them!**
music_directory "~/music"
playlist_directory "~/.mpd/playlists"
state_file "~/.mpd/state"
zeroconf_enabled "no"
database {
plugin "simple"
path "~/.mpd/database"
}