]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r1919468 from trunk:
authorEric Covener <covener@apache.org>
Tue, 23 Jul 2024 12:56:43 +0000 (12:56 +0000)
committerEric Covener <covener@apache.org>
Tue, 23 Jul 2024 12:56:43 +0000 (12:56 +0000)
use UNCList in UNC examples

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

docs/manual/platform/windows.xml

index f68eaa0d12f8d4ab574535dedcd5bd4672faf89e..1c11655ca5fe8436416b779c9d997ce6bc298cbb 100644 (file)
@@ -609,22 +609,30 @@ RewriteRule "(.*)" "${lowercase:$1}" [R,L]
 
   <example><title>Example DocumentRoot with UNC path</title>
   <highlight language="config">
+  UNCList dochost
   DocumentRoot "//dochost/www/html/"
   </highlight>
   </example>
 
   <example><title>Example DocumentRoot with IP address in UNC path</title>
   <highlight language="config">
+  UNCList 192.168.1.50
   DocumentRoot "//192.168.1.50/docs/"
   </highlight>
   </example>
 
   <example><title>Example Alias and corresponding Directory with UNC path</title>
   <highlight language="config">
+
+UNCList imagehost1 imagehost2
 Alias "/images/" "//imagehost/www/images/"
+Alias "/images2/" "//imagehost2/www/images/"
 
 &lt;Directory "//imagehost/www/images/"&gt;
 #...
+&lt;/Directory&gt;
+&lt;Directory "//imagehost2/www/images/"&gt;
+#...
 &lt;/Directory&gt;
   </highlight>
   </example>