webdav.conf 701 B

123456789101112131415161718192021222324252627282930313233
  1. #######################################################################
  2. ##
  3. ## WebDAV Module
  4. ## ---------------
  5. ##
  6. ## http://www.lighttpd.net/documentation/webdav.html
  7. ##
  8. server.modules += ( "mod_webdav" )
  9. $HTTP["url"] =~ "^/dav($|/)" {
  10. ##
  11. ## enable webdav for this location
  12. ##
  13. webdav.activate = "enable"
  14. ##
  15. ## By default the webdav url is writable.
  16. ## Uncomment the following line if you want to make it readonly.
  17. ##
  18. #webdav.is-readonly = "enable"
  19. ##
  20. ## Log the XML Request bodies for debugging
  21. ##
  22. #webdav.log-xml = "disable"
  23. ##
  24. ##
  25. ##
  26. webdav.sqlite-db-name = home_dir + "/webdav.db"
  27. }
  28. ##
  29. #######################################################################