Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 668e1e22f48fd88415806997f1008fbc > files > 26

lighttpd-1.4.33-4.mga4.x86_64.rpm

#######################################################################
##
##  WebDAV Module
## ---------------
##
## http://www.lighttpd.net/documentation/webdav.html
##
server.modules += ( "mod_webdav" )

$HTTP["url"] =~ "^/dav($|/)" {
  ##
  ## enable webdav for this location
  ##
  webdav.activate = "enable"

  ##
  ## By default the webdav url is writable.
  ## Uncomment the following line if you want to make it readonly.
  ##
  #webdav.is-readonly = "enable"

  ##
  ## Log the XML Request bodies for debugging
  ##
  #webdav.log-xml = "disable"

  ##
  ##  
  ##
  webdav.sqlite-db-name = home_dir + "/webdav.db"
}
##
#######################################################################