webdav.conf 939 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #######################################################################
  2. ##
  3. ## WebDAV Module
  4. ## ---------------
  5. ##
  6. ## See https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModWebDAV
  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. ## SQLite database for WebDAV properties and WebDAV locks
  21. ##
  22. webdav.sqlite-db-name = home_dir + "/webdav.db"
  23. ##
  24. ## Log the XML Request bodies for debugging
  25. ##
  26. #webdav.log-xml = "disable"
  27. ##
  28. ## mod_webdav further tunables
  29. ## See online doc:
  30. ## https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModWebDAV
  31. ##
  32. #webdav.opts = ( ... )
  33. }
  34. ##
  35. #######################################################################