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

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1041979 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/platform/windows.xml

index 9966c565bc6ff4efd0848d58ced94e87dcc7942f..b02b3d9727a2db3baf2f855041d7fafcb5ab9723 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 />