blob: d37f629d5cac5328739bd9bf74355b347e12dee3 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
--- doc/mpdconf.example 2006-09-15 03:39:30.000000000 +0200
+++ doc/mpdconf.example.gentoo 2006-09-16 19:57:42.000000000 +0200
@@ -1,12 +1,12 @@
-# An example configuration file for MPD
+# A default Gentoo configuration file for MPD
# See the mpd.conf man page for a more detailed description of each parameter.
######################## REQUIRED PATHS ########################
-music_directory "~/music"
-playlist_directory "~/.mpd/playlists"
-db_file "~/.mpd/mpd.db"
-log_file "~/.mpd/mpd.log"
-error_file "~/.mpd/mpd.error"
+music_directory "/var/lib/mpd/music"
+playlist_directory "/var/lib/mpd/playlists"
+db_file "/var/lib/mpd/database"
+log_file "/var/log/mpd/mpd.log"
+error_file "/var/log/mpd/mpd.error.log"
################################################################
@@ -15,13 +15,13 @@
# If you wish to use mpd --kill to stop MPD, then you must
# specify a file here in which to store MPD's process ID.
#
-#pid_file "~/.mpd/mpd.pid"
+pid_file "/var/run/mpd/mpd.pid"
#
# If specified, MPD will save its current state (playlist,
# current song, playing/paused, etc.) at exit. This will be
# used to restore the session the next time it is run.
#
-#state_file "~/.mpd/mpdstate"
+state_file "/var/lib/mpd/state"
#
################################################################
@@ -33,11 +33,11 @@
# started by. If left unspecified, MPD will not drop root
# privileges at all (not recommended).
#
-#user "nobody"
+user "mpd"
#
# The address and port to listen on.
#
-#bind_to_address "any"
+bind_to_address "localhost"
#port "6600"
#
# Controls the amount of information that is logged. Can be
|