diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2011-01-20 17:49:42 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-01-21 15:00:17 +0100 |
commit | de597b402be027b1b0b0d86fd5f3dc8a1031c7f2 (patch) | |
tree | a5439b46432e28e684db72c0d812bdf0ebc92de8 /package/multimedia/mpd/mpd.conf | |
parent | 64129c0546dfeaef6fa1eb8ad78901e9fd12f20a (diff) |
mpd: new package
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/multimedia/mpd/mpd.conf')
-rw-r--r-- | package/multimedia/mpd/mpd.conf | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package/multimedia/mpd/mpd.conf b/package/multimedia/mpd/mpd.conf new file mode 100644 index 000000000..1a08ed0ff --- /dev/null +++ b/package/multimedia/mpd/mpd.conf @@ -0,0 +1,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 "/mnt/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" |