File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / doc / outdated / webdav.txt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 14 10:32:48 2013 UTC (10 years, 9 months ago) by misho
Branches: lighttpd, MAIN
CVS tags: v1_4_41p8, v1_4_35p0, v1_4_35, v1_4_33, HEAD
1.4.33

======
WebDAV
======

--------------------
Module: mod_webdav
--------------------

:Author: Jan Kneschke
:Date: $Date: 2013/10/14 10:32:48 $
:Revision: $Revision: 1.1.1.1 $

:abstract:
  WebDAV module for lighttpd

.. meta::
  :keywords: lighttpd, webdav

.. contents:: Table of Contents

Description
===========

The WebDAV module is a very minimalistic implementation of RFC 2518.
Minimalistic means that not all operations are implemented yet.

So far we have

 * PROPFIND
 * OPTIONS
 * MKCOL
 * DELETE
 * PUT

and the usual GET, POST, HEAD from HTTP/1.1.

So far, mounting a WebDAV resource into Windows XP works and the basic litmus
tests are passed.

Options
=======

webdav.activate
  If you load the webdav module, the WebDAV functionality has to be
  enabled for the directories you want to provide to the user.

  Default: disable

webdav.is-readonly
  Only allow reading methods (GET, PROPFIND, OPTIONS) on WebDAV resources.

  Default: writable

Examples
========

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. ::

  $HTTP["url"] =~ "^/dav($|/)" {
    webdav.activate = "enable"
    webdav.is-readonly = "enable"
  }

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