IBM HTTP Server help: WebDAV Directives

WebDAV Directives

Dav

Note: You may wish to add a <Limit> clause inside the location directive to limit access to DAV-enabled locations.

Example:

DavLockDB /tmp/DavLock

<Location /foo>
Dav On

AuthType Basic
AuthName DAV
AuthUserFile user.passwd

  <LimitExcept GET HEAD OPTIONS>
  require user admin
  </LimitExcept>
</Location>

DavLockDB

Example:

Simple -

DavLockDB /tmp/DavLock
<Location />
Dav On
</Location>

Complex -

DavLockDB /tmp/DavLock
<Location /foo>
Dav On
DavMinTimeout 600

AuthType Basic
AuthName DAV
AuthUserFile user.passwd

<Limit Except GET HEAD OPTIONS>
require user admin
</LimitExcept>
</Location>

DavMinTimeout

A client can requests a DAV resource lock, and also specify a time when the lock will be automatically removed by the server. This value is only a request and the server can ignore it or inform the client of an arbitrary value.

Example:

<Location /MSWord>
DavMinTimeout 600
</Location>

Related Information