From 06b32a39d093a8ccdbdcdd8a167c1faf5e21b0ef Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Tue, 23 Jul 2024 12:56:43 +0000 Subject: [PATCH] Merge r1919468 from trunk: 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 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/manual/platform/windows.xml b/docs/manual/platform/windows.xml index f68eaa0d12f..1c11655ca5f 100644 --- a/docs/manual/platform/windows.xml +++ b/docs/manual/platform/windows.xml @@ -609,22 +609,30 @@ RewriteRule "(.*)" "${lowercase:$1}" [R,L] Example DocumentRoot with UNC path + UNCList dochost DocumentRoot "//dochost/www/html/" Example DocumentRoot with IP address in UNC path + UNCList 192.168.1.50 DocumentRoot "//192.168.1.50/docs/" Example Alias and corresponding Directory with UNC path + +UNCList imagehost1 imagehost2 Alias "/images/" "//imagehost/www/images/" +Alias "/images2/" "//imagehost2/www/images/" <Directory "//imagehost/www/images/"> #... +</Directory> +<Directory "//imagehost2/www/images/"> +#... </Directory> -- 2.47.3