From: Eric Covener Date: Tue, 23 Jul 2024 12:56:43 +0000 (+0000) Subject: Merge r1919468 from trunk: X-Git-Tag: 2.4.63-candidate~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06b32a39d093a8ccdbdcdd8a167c1faf5e21b0ef;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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>