From: Eric Covener Date: Tue, 23 Jul 2024 12:55:46 +0000 (+0000) Subject: use UNCList in UNC examples X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06306e4c474d10c8d7c67a1e1c19645091053ec3;p=thirdparty%2Fapache%2Fhttpd.git use UNCList in UNC examples git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919468 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/platform/windows.xml b/docs/manual/platform/windows.xml index 2d12a6c22bf..b7e509c493f 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>