]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
clearly distinguish between independent UNC path examples to
authorJeff Trawick <trawick@apache.org>
Fri, 3 Dec 2010 18:43:24 +0000 (18:43 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 3 Dec 2010 18:43:24 +0000 (18:43 +0000)
prevent user confusion

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1041945 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/platform/windows.xml

index 5adb7cbff93e16dc6bb20eeb2bde1d3b1301b8f6..73760e22bd0f252b8c440be624005399986691e4 100644 (file)
   (Arcane and error prone procedures may work around the restriction
   on mapped drive letters, but this is not recommended.)</p>
 
-  <example><title>Example directives with UNC paths</title>
+  <example><title>Example DocumentRoot with UNC path</title>
+  DocumentRoot //dochost/www/html/
+  </example>
 
-  DocumentRoot //dochost/www/html/<br />
-  <br />
+  <example><title>Example DocumentRoot with IP address in UNC path</title>
   DocumentRoot //192.168.1.50/docs/<br />
-  <br />
+  </example>
+
+  <example><title>Example Alias and corresponding Directory with UNC path</title>
   Alias /images/ //imagehost/www/images/<br />
   <br />
   &lt;Directory //imagehost/www/images/&gt;<br />