File:  [ELWIX - Embedded LightWeight unIX -] / elwix / config / etc / default / lighttpd / conf.d / webdav.conf
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Sun Jan 5 23:14:25 2014 UTC (10 years, 6 months ago) by misho
Branches: MAIN
CVS tags: elwix2_3, elwix2_2, HEAD, ELWIX2_2p0, ELWIX2_1
version 2.1

#######################################################################
##
##  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"
}
##
#######################################################################

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>