Mailing List Archive

svn commit: r1915685 - /httpd/httpd/trunk/docs/manual/mod/mod_dav.xml
Author: jorton
Date: Fri Feb 9 10:06:38 2024
New Revision: 1915685

URL: http://svn.apache.org/viewvc?rev=1915685&view=rev
Log:
docs: mod_dav: Remove references to DavLockDB being required
since it's not true for trunk mod_dav_fs; refresh seealso.

Modified:
httpd/httpd/trunk/docs/manual/mod/mod_dav.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_dav.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_dav.xml?rev=1915685&r1=1915684&r2=1915685&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_dav.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_dav.xml Fri Feb 9 10:06:38 2024
@@ -37,9 +37,8 @@
copying, and deleting resources and collections on a remote web
server.</p>
</summary>
-<seealso><directive module="mod_dav_fs">DavLockDB</directive></seealso>
+<seealso><module>mod_dav_fs</module></seealso>
<seealso><directive module="core">LimitXMLRequestBody</directive></seealso>
-<seealso><a href="http://www.webdav.org">WebDAV Resources</a></seealso>

<section id="example"><title>Enabling WebDAV</title>
<p>To enable <module>mod_dav</module>, add the following to a
@@ -54,20 +53,6 @@ Dav On
must be compiled into the server or loaded at runtime using the
<directive module="mod_so">LoadModule</directive> directive.</p>

- <p>In addition, a location for the DAV lock database must be
- specified in the global section of your <code>httpd.conf</code>
- file using the <directive module="mod_dav_fs">DavLockDB</directive>
- directive:</p>
-
- <highlight language="config">
- DavLockDB "/usr/local/apache2/var/DavLock"
- </highlight>
-
- <p>The directory containing the lock database file must be
- writable by the <directive module="mod_unixd">User</directive>
- and <directive module="mod_unixd">Group</directive> under which
- Apache is running.</p>
-
<p>You may wish to add a <directive module="core" type="section"
>Limit</directive> clause inside the <directive module="core"
type="section">Location</directive> directive to limit access to
@@ -80,8 +65,6 @@ Dav On

<example><title>Full Example</title>
<highlight language="config">
-DavLockDB "/usr/local/apache2/var/DavLock"
-
&lt;Directory "/usr/local/apache2/htdocs/foo"&gt;
Require all granted
Dav On