From: Joshua Slive Date: Mon, 21 Apr 2003 20:36:39 +0000 (+0000) Subject: Be a little more consistent with the pathnames, and move some X-Git-Tag: pre_ajp_proxy~1813 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=97d88cbc968b675ff564d66230b9258a912c441b;p=thirdparty%2Fapache%2Fhttpd.git Be a little more consistent with the pathnames, and move some DavLockDB details to its directive docs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99485 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_dav.html.en b/docs/manual/mod/mod_dav.html.en index ad867f69e3c..5835670a961 100644 --- a/docs/manual/mod/mod_dav.html.en +++ b/docs/manual/mod/mod_dav.html.en @@ -65,7 +65,8 @@

In addition, a location for the DAV lock database must be specified in the global section of your httpd.conf - file:

+ file using the DavLockDB + directive:

DavLockDB /usr/local/apache2/var/DavLock @@ -74,12 +75,7 @@

The directory containing the lock database file must be writable by the User and Group under which - Apache is running. For security reasons, you should create a - directory for this purpose rather than changing the permissions on - an existing directory. In the above example, Apache will create - files in the /usr/local/apache2/var/ directory - with the base filename DavLock and extension name - chosen by the server.

+ Apache is running.

You may wish to add a <Limit> clause inside the <Location> directive to limit access to DAV-enabled locations. If you want to set the maximum amount of @@ -89,7 +85,7 @@ requests.

Full Example

- DavLockDB /tmp/DavLock
+ DavLockDB /usr/local/apache2/var/DavLock

<Location /foo>
diff --git a/docs/manual/mod/mod_dav.xml b/docs/manual/mod/mod_dav.xml index fc8abf5ec85..286931c119a 100644 --- a/docs/manual/mod/mod_dav.xml +++ b/docs/manual/mod/mod_dav.xml @@ -35,7 +35,8 @@

In addition, a location for the DAV lock database must be specified in the global section of your httpd.conf - file:

+ file using the DavLockDB + directive:

DavLockDB /usr/local/apache2/var/DavLock @@ -44,12 +45,7 @@

The directory containing the lock database file must be writable by the User and Group under which - Apache is running. For security reasons, you should create a - directory for this purpose rather than changing the permissions on - an existing directory. In the above example, Apache will create - files in the /usr/local/apache2/var/ directory - with the base filename DavLock and extension name - chosen by the server.

+ Apache is running.

You may wish to add a Limit clause inside the Full Example - DavLockDB /tmp/DavLock
+ DavLockDB /usr/local/apache2/var/DavLock

<Location /foo>
diff --git a/docs/manual/mod/mod_dav_fs.html.en b/docs/manual/mod/mod_dav_fs.html.en index 98ce88a69ca..99801165d4e 100644 --- a/docs/manual/mod/mod_dav_fs.html.en +++ b/docs/manual/mod/mod_dav_fs.html.en @@ -67,9 +67,19 @@

Example

- DavLockDB logs/DavLock + DavLockDB var/DavLock

+

The directory containing the lock database file must be + writable by the User + and Group under which + Apache is running. For security reasons, you should create a + directory for this purpose rather than changing the permissions on + an existing directory. In the above example, Apache will create + files in the var/ directory under the ServerRoot with the base filename + DavLock and extension name chosen by the server.

+ +