diff options
Diffstat (limited to 'docs/manual/mod/mod_dav.html.en')
-rw-r--r-- | docs/manual/mod/mod_dav.html.en | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/manual/mod/mod_dav.html.en b/docs/manual/mod/mod_dav.html.en index 4aaa6b142a..8a89b2c511 100644 --- a/docs/manual/mod/mod_dav.html.en +++ b/docs/manual/mod/mod_dav.html.en @@ -78,7 +78,7 @@ file using the <code class="directive"><a href="../mod/mod_dav_fs.html#davlockdb">DavLockDB</a></code> directive:</p> - <pre class="prettyprint lang-config">DavLockDB /usr/local/apache2/var/DavLock</pre> + <pre class="prettyprint lang-config">DavLockDB "/usr/local/apache2/var/DavLock"</pre> <p>The directory containing the lock database file must be @@ -93,15 +93,15 @@ directive. The "normal" <code class="directive"><a href="../mod/core.html#limitrequestbody">LimitRequestBody</a></code> directive has no effect on DAV requests.</p> - <div class="example"><h3>Full Example</h3><pre class="prettyprint lang-config">DavLockDB /usr/local/apache2/var/DavLock + <div class="example"><h3>Full Example</h3><pre class="prettyprint lang-config">DavLockDB "/usr/local/apache2/var/DavLock" -<Directory /usr/local/apache2/htdocs/foo> +<Directory "/usr/local/apache2/htdocs/foo"> Require all granted Dav On AuthType Basic - AuthName DAV - AuthUserFile user.passwd + AuthName "DAV" + AuthUserFile "user.passwd" <LimitExcept GET POST OPTIONS> Require user admin @@ -159,9 +159,9 @@ will run the script, and one of which will allow it to be downloaded and manipulated with DAV.</p> -<pre class="prettyprint lang-config">Alias /phparea /home/gstein/php_files -Alias /php-source /home/gstein/php_files -<Location /php-source> +<pre class="prettyprint lang-config">Alias "/phparea" "/home/gstein/php_files" +Alias "/php-source" "/home/gstein/php_files" +<Location "/php-source"> Dav On ForceType text/plain </Location></pre> @@ -185,7 +185,7 @@ Alias /php-source /home/gstein/php_files <p>Use the <code class="directive">Dav</code> directive to enable the WebDAV HTTP methods for the given container:</p> - <pre class="prettyprint lang-config"><Location /foo> + <pre class="prettyprint lang-config"><Location "/foo"> Dav On </Location></pre> @@ -240,7 +240,7 @@ a DAV resource</td></tr> (like 600 seconds) to reduce the chance of the client losing the lock due to network latency.</p> - <div class="example"><h3>Example</h3><pre class="prettyprint lang-config"><Location /MSWord> + <div class="example"><h3>Example</h3><pre class="prettyprint lang-config"><Location "/MSWord"> DavMinTimeout 600 </Location></pre> </div> |