forked-daapd.conf 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. general {
  2. # Username
  3. uid = "daapd"
  4. logfile = "/var/log/forked-daapd.log"
  5. # Database location
  6. db_path = "/srv/music/.forked-daapd/songs3.db"
  7. # Available levels: fatal, log, warning, info, debug, spam
  8. loglevel = log
  9. # Admin password for the non-existent web interface
  10. admin_password = "unused"
  11. # Enable/disable IPv6
  12. ipv6 = no
  13. }
  14. # Library configuration
  15. library {
  16. # Name of the library as displayed by the clients
  17. # %h: hostname, %v: version
  18. name = "My Music on %h"
  19. # TCP port to listen on. Default port is 3689 (daap)
  20. port = 3689
  21. # Password for the library. Optional.
  22. # password = ""
  23. # Directories to index
  24. directories = { "/srv/music" }
  25. # Directories containing compilations
  26. # Matches anywhere in the path (not a regexp, though)
  27. # compilations = { "/compilations/" }
  28. # Should iTunes metadata override ours?
  29. # itunes_overrides = true
  30. # Formats: mp4a, mp4v, mpeg, alac, flac, mpc, ogg, wma, wmal, wmav, aif, wav
  31. # Formats that should never be transcoded
  32. # no_transcode = { "alac", "mp4a" }
  33. # Formats that should always be transcoded
  34. # force_transcode = { "ogg", "flac" }
  35. }
  36. # Local audio output
  37. audio {
  38. # AirTunes name - used in the speaker list in Remote
  39. nickname = "Computer"
  40. # Audio device name for local audio output
  41. # card = "default"
  42. }
  43. # Airport Express device
  44. #apex "ApEx" {
  45. # AirTunes password
  46. # password = "s1kr3t"
  47. #}