summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorLucien Gentis <lgentis@apache.org>2024-07-26 14:33:18 +0200
committerLucien Gentis <lgentis@apache.org>2024-07-26 14:33:18 +0200
commit6ac221c38163dc0ef24c02114157cc3d2d2b0bd0 (patch)
tree368d0bd57b74a843150e9d5819a60a310edccfe8 /docs
parentCI: Fix OpenSSL tarball download URLs after openssl.org site refresh (diff)
downloadapache2-6ac221c38163dc0ef24c02114157cc3d2d2b0bd0.tar.xz
apache2-6ac221c38163dc0ef24c02114157cc3d2d2b0bd0.zip
fr doc XML file update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919526 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r--docs/manual/platform/windows.xml.fr10
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/manual/platform/windows.xml.fr b/docs/manual/platform/windows.xml.fr
index ef3d452e00..328f39fef1 100644
--- a/docs/manual/platform/windows.xml.fr
+++ b/docs/manual/platform/windows.xml.fr
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1914040:1919468 (outdated) -->
+<!-- English Revision: 1919468 -->
<!-- French translation : Lucien GENTIS -->
<!-- Reviewed by : Vincent Deffontaines -->
@@ -674,12 +674,14 @@ RewriteRule "(.*)" "${lowercase:$1}" [R,L]
<example><title>Exemple de DocumentRoot avec chemin UNC</title>
<highlight language="config">
+ UNCList dochost
DocumentRoot "//dochost/www/html/"
</highlight>
</example>
<example><title>Exemple de DocumentRoot avec adresse IP dans le chemin UNC</title>
<highlight language="config">
+ UNCList 192.168.1.50
DocumentRoot "//192.168.1.50/docs/"
</highlight>
</example>
@@ -687,11 +689,17 @@ RewriteRule "(.*)" "${lowercase:$1}" [R,L]
<example><title>Exemple d'Alias et répertoire correspondant avec
chemin UNC</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>