mpd.conf 681 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # Sample configuration file for mpd
  3. # This is a minimal configuration, see the manpage for more options
  4. #
  5. # Directory where the music is stored
  6. music_directory "/var/lib/mpd/music"
  7. # Directory where user-made playlists are stored (RW)
  8. playlist_directory "/var/lib/mpd/playlists"
  9. # Database file (RW)
  10. db_file "/var/lib/mpd/database"
  11. # Log file (RW)
  12. log_file "/var/log/mpd.log"
  13. # Process ID file (RW)
  14. pid_file "/var/run/mpd.pid"
  15. # State file (RW)
  16. state_file "/var/lib/mpd/state"
  17. # User id to run the daemon as
  18. #user "nobody"
  19. # TCP socket binding
  20. bind_to_address "any"
  21. #bind_to_address "localhost"
  22. # Unix socket to listen on
  23. bind_to_address "/var/lib/mpd/socket"