34 lines
722 B
Plaintext
34 lines
722 B
Plaintext
#######################################################################
|
|
##
|
|
## WebDAV Module
|
|
## ---------------
|
|
##
|
|
## See https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModWebDAV
|
|
##
|
|
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"
|
|
}
|
|
##
|
|
#######################################################################
|