lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
939 B
40 lines
939 B
####################################################################### |
|
## |
|
## 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" |
|
|
|
## |
|
## SQLite database for WebDAV properties and WebDAV locks |
|
## |
|
webdav.sqlite-db-name = home_dir + "/webdav.db" |
|
|
|
## |
|
## Log the XML Request bodies for debugging |
|
## |
|
#webdav.log-xml = "disable" |
|
|
|
## |
|
## mod_webdav further tunables |
|
## See online doc: |
|
## https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModWebDAV |
|
## |
|
#webdav.opts = ( ... ) |
|
} |
|
## |
|
#######################################################################
|
|
|