summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/webdav.conf
diff options
context:
space:
mode:
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/webdav.conf')
-rw-r--r--data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/webdav.conf33
1 files changed, 33 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/webdav.conf b/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/webdav.conf
new file mode 100644
index 000000000..0fe3e6b0a
--- /dev/null
+++ b/data/lighttpd/lighttpd-1.4.53/doc/config/conf.d/webdav.conf
@@ -0,0 +1,33 @@
+#######################################################################
+##
+## 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"
+}
+##
+#######################################################################