summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2024-07-23 14:55:46 +0200
committerEric Covener <covener@apache.org>2024-07-23 14:55:46 +0200
commit06306e4c474d10c8d7c67a1e1c19645091053ec3 (patch)
tree2ec3715950707b2837799d6bc4bf4e39d4493193 /docs
parentCMake: Use TARGET_COMPILE_DEFINITIONS to set preprocessor definitions. (diff)
downloadapache2-06306e4c474d10c8d7c67a1e1c19645091053ec3.tar.xz
apache2-06306e4c474d10c8d7c67a1e1c19645091053ec3.zip
use UNCList in UNC examples
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919468 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r--docs/manual/platform/windows.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/manual/platform/windows.xml b/docs/manual/platform/windows.xml
index 2d12a6c22b..b7e509c493 100644
--- a/docs/manual/platform/windows.xml
+++ b/docs/manual/platform/windows.xml
@@ -609,23 +609,31 @@ 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>