You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.3 KiB
Plaintext
65 lines
1.3 KiB
Plaintext
18 years ago
|
======
|
||
|
WebDAV
|
||
|
======
|
||
|
|
||
|
--------------------
|
||
|
Module: mod_webdav
|
||
|
--------------------
|
||
|
|
||
|
:Author: Jan Kneschke
|
||
|
:Date: $Date: 2004/11/03 22:26:05 $
|
||
|
:Revision: $Revision: 1.2 $
|
||
|
|
||
|
:abstract:
|
||
|
WebDAV module for lighttpd
|
||
![]()
17 years ago
|
|
||
18 years ago
|
.. meta::
|
||
|
:keywords: lighttpd, webdav
|
||
![]()
17 years ago
|
|
||
18 years ago
|
.. contents:: Table of Contents
|
||
|
|
||
|
Description
|
||
|
===========
|
||
|
|
||
|
The WebDAV module is a very minimalistic implementation of RFC 2518.
|
||
![]()
17 years ago
|
Minimalistic means that not all operations are implemented yet.
|
||
18 years ago
|
|
||
|
So far we have
|
||
|
|
||
|
* PROPFIND
|
||
|
* OPTIONS
|
||
|
* MKCOL
|
||
|
* DELETE
|
||
18 years ago
|
* PUT
|
||
18 years ago
|
|
||
![]()
17 years ago
|
and the usual GET, POST, HEAD from HTTP/1.1.
|
||
18 years ago
|
|
||
18 years ago
|
So far, mounting a WebDAV resource into Windows XP works and the basic litmus
|
||
18 years ago
|
tests are passed.
|
||
18 years ago
|
|
||
|
Options
|
||
|
=======
|
||
|
|
||
|
webdav.activate
|
||
![]()
17 years ago
|
If you load the webdav module, the WebDAV functionality has to be
|
||
18 years ago
|
enabled for the directories you want to provide to the user.
|
||
![]()
17 years ago
|
|
||
18 years ago
|
Default: disable
|
||
|
|
||
|
webdav.is-readonly
|
||
|
Only allow reading methods (GET, PROPFIND, OPTIONS) on WebDAV resources.
|
||
|
|
||
|
Default: writable
|
||
|
|
||
|
Examples
|
||
|
========
|
||
|
|
||
18 years ago
|
To enable WebDAV for the /dav directory, you wrap your webdav options in
|
||
|
a conditional. You have to use the regex like below as you want to match
|
||
|
the directory /dav and everything below it, but not e.g. /davos. ::
|
||
18 years ago
|
|
||
|
$HTTP["url"] =~ "^/dav($|/)" {
|
||
|
webdav.activate = "enable"
|
||
|
webdav.is-readonly = "enable"
|
||
|
}
|