blob: 5956b75e24476683721620217704ca51eb942fd9 (
plain)
| 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
31
32
 | #
# Sample configuration file for mpd
# This is a minimal configuration, see the manpage for more options
#
# Directory where the music is stored
music_directory		"/var/lib/mpd/music"
# Directory where user-made playlists are stored (RW)
playlist_directory	"/var/lib/mpd/playlists"
# Database file (RW)
db_file			"/var/lib/mpd/database"
# Log file (RW)
log_file		"/var/log/mpd.log"
# Process ID file (RW)
pid_file		"/var/run/mpd.pid"
# State file (RW)
state_file		"/var/lib/mpd/state"
# User id to run the daemon as
#user			"nobody"
# TCP socket binding
bind_to_address		"any"
#bind_to_address	"localhost"
# Unix socket to listen on
bind_to_address		"/var/lib/mpd/socket"
 |