]> granicus.if.org Git - apache/commitdiff
XML updates.
authorLucien Gentis <lgentis@apache.org>
Sat, 2 May 2015 16:39:20 +0000 (16:39 +0000)
committerLucien Gentis <lgentis@apache.org>
Sat, 2 May 2015 16:39:20 +0000 (16:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1677332 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_authz_owner.xml.fr
docs/manual/mod/mod_dialup.xml.fr
docs/manual/mod/mod_example_hooks.xml.fr
docs/manual/mod/mod_ext_filter.xml.fr
docs/manual/mod/mod_log_debug.xml.fr
docs/manual/mod/mod_proxy.xml.fr

index 46eeb818c8c65a6d37bcc087df1fe098f477e53a..7778b5419ad59794faaf7f26e502127046f402a3 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1334008:1673563 (outdated) -->
+<!-- English Revision: 1673563 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -98,11 +98,11 @@ d'Apache</compatibility>
       <code>smith</code>.</p>
 
       <highlight language="config">
-&lt;Directory /home/*/public_html/private&gt;
+&lt;Directory "/home/*/public_html/private"&gt;
     AuthType Basic
     AuthName MyPrivateFiles
     AuthBasicProvider dbm
-    AuthDBMUserFile /usr/local/apache2/etc/.htdbm-all
+    AuthDBMUserFile "/usr/local/apache2/etc/.htdbm-all"
     Require file-owner
 &lt;/Directory&gt;
       </highlight>
@@ -123,14 +123,14 @@ d'Apache</compatibility>
       r&eacute;pertoires <code>project-foo</code> de chacun d'entre eux.</p>
 
       <highlight language="config">
-&lt;Directory /home/*/public_html/project-foo&gt;
+&lt;Directory "/home/*/public_html/project-foo"&gt;
     AuthType Basic
     AuthName "Project Foo Files"
     AuthBasicProvider dbm
     
     # combined user/group database
-    AuthDBMUserFile  /usr/local/apache2/etc/.htdbm-all
-    AuthDBMGroupFile /usr/local/apache2/etc/.htdbm-all
+    AuthDBMUserFile  "/usr/local/apache2/etc/.htdbm-all"
+    AuthDBMGroupFile "/usr/local/apache2/etc/.htdbm-all"
     
     Satisfy All
     Require file-group
index 1c856a1cd018def6bc8f5ee030749e66b7f3db41..23a8114cd04124a247a2f5367acf1bb539d62a40 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1334011:1673563 (outdated) -->
+<!-- English Revision: 1673563 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -41,8 +41,8 @@ modems. Ainsi, il est possible de naviguer sur votre site avec un modem
 56k V.92 en positionnant une configuration de ce type :</p>
 
 <highlight language="config">
-&lt;Location /mysite&gt;
-    ModemStandard V.92
+&lt;Location "/mysite"&gt;
+    ModemStandard "V.92"
 &lt;/Location&gt;
 </highlight>
 
@@ -67,8 +67,8 @@ client.</p>
 souhaitez simuler.</p>
 
 <highlight language="config">
-&lt;Location /mysite&gt;
-    ModemStandard V.26bis
+&lt;Location "/mysite"&gt;
+    ModemStandard "V.26bis"
 &lt;/Location&gt;
 </highlight>
 
index a92084be40dcb25028257b08c67fc84e0ce362b9..aa176bb32e4318bac03ab1d22c1dc35728e6d79a 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1629262:1673563 (outdated) -->
+<!-- English Revision: 1673563 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
     <p>Pour activer le module example_hooks, ajoutez &agrave; votre fichier
     <code>httpd.conf</code> un bloc du style :</p>
 <highlight language="config">
-&lt;Location /example-hooks-info&gt;
+&lt;Location "/example-hooks-info"&gt;
    SetHandler example-hooks-handler
 &lt;/Location&gt;
 </highlight>
     correspondant :</p>
 
 <highlight language="config">
-   AddHandler example-hooks-handler .example
+   AddHandler example-hooks-handler ".example"
    </highlight>
 
     <p>Apr&egrave;s avoir recharg&eacute; la configuration ou red&eacute;marr&eacute; votre serveur,
index eed372d268a9d9e89ed27691935ea88b33a1b5a0..d9f58eeed2651c64628847d7035c7d76686fe871 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1669205:1673563 (outdated) -->
+<!-- English Revision: 1673563 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -98,7 +98,7 @@ ExtFilterDefine c-to-html mode=output \
 # la directive de mod_ext_filter qui d&eacute;finit le filtre externe
 ExtFilterDefine gzip mode=output cmd=/bin/gzip
 
-&lt;Location /gzipped&gt;
+&lt;Location "/gzipped"&gt;
 
     # directive de base permettant de traiter la sortie avec le
   # filtre gzip
@@ -122,7 +122,7 @@ ExtFilterDefine gzip mode=output cmd=/bin/gzip
 ExtFilterDefine slowdown mode=output cmd=/bin/cat \
     preservescontentlength
 
-&lt;Location /&gt;
+&lt;Location "/"&gt;
     # directive de base permettant de traiter plusieurs fois la
     # sortie avec le filtre slowdown
     #
@@ -141,7 +141,7 @@ ExtFilterDefine slowdown mode=output cmd=/bin/cat \
 ExtFilterDefine fixtext mode=output intype=text/html \
     cmd="/bin/sed s/verdana/arial/g"
 
-&lt;Location /&gt;
+&lt;Location "/"&gt;
     # directive de base permettant de traiter la sortie avec le
     # filtre fixtext
     SetOutputFilter fixtext
@@ -177,7 +177,7 @@ ExtFilterDefine traceafter \
     cmd="/bin/tracefilter.pl /tmp/traceafter" \
     EnableEnv=trace_this_client ftype=21
 
-&lt;Directory /usr/local/docs&gt;
+&lt;Directory "/usr/local/docs"&gt;
     SetEnvIf Remote_Addr 192.168.1.31 trace_this_client
     SetOutputFilter tracebefore;deflate;traceafter
 &lt;/Directory&gt;
index fb0a1209761be352acb3257ea76948786d38ae9d..641bdf3dc287090a2d2c9a075b23c7a91c9846a0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1533256:1673563 (outdated) -->
+<!-- English Revision: 1673563 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -39,7 +39,7 @@
        /foo/* :
 
         <highlight language="config">
-&lt;Location /foo/&gt;
+&lt;Location "/foo/"&gt;
 &nbsp;&nbsp;LogMessage "/foo/ has been requested"
 &lt;/Location&gt;
         </highlight>
@@ -49,7 +49,7 @@
         Enregistre un message si une requ&ecirc;te pour /foo/* est trait&eacute;e
        dans une sous-requ&ecirc;te :
         <highlight language="config">
-&lt;Location /foo/&gt;
+&lt;Location "/foo/"&gt;
 &nbsp;&nbsp;LogMessage "subrequest to /foo/" hook=type_checker expr=%{IS_SUBREQ}
 &lt;/Location&gt;
         </highlight>
@@ -74,7 +74,7 @@
         Enregistre la valeur de la variable d'environnement de requ&ecirc;te
        "X-Foo" &agrave; chaque &eacute;tape du traitement :
         <highlight language="config">
-&lt;Location /&gt;
+&lt;Location "/"&gt;
 &nbsp;&nbsp;LogMessage "%{reqenv:X-Foo}" hook=all
 &lt;/Location&gt;
         </highlight>
index 3679ebfc019bd74adac69b1fd8a16bc9e10916ff..17709639ccf7dba8bd2ee4aefd52f27f654db7eb 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1659899:1673563 (outdated) -->
+<!-- English Revision: 1673563 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
 
     <example><title>Mandataire inverse</title>
     <highlight language="config">
-ProxyPass /foo http://foo.example.com/bar
-ProxyPassReverse /foo http://foo.example.com/bar
+ProxyPass "/foo" "http://foo.example.com/bar"
+ProxyPassReverse "/foo" "http://foo.example.com/bar"
     </highlight>
     </example>
 
@@ -178,7 +178,7 @@ ProxyPassReverse /foo http://foo.example.com/bar
 ProxyRequests On
 ProxyVia On
 
-&lt;Proxy *&gt;
+&lt;Proxy "*"&gt;
   Require host internal.example.com
 &lt;/Proxy&gt;
     </highlight>
@@ -196,7 +196,7 @@ ProxyVia On
 
     <example><title>Scripts PHP et mandataire inverse</title>
     <highlight language="config">
-&lt;FilesMatch \.php$&gt;
+&lt;FilesMatch "\.php$"&gt;
     # Les sockets Unix n&eacute;cessitent une version 2.4.7 ou sup&eacute;rieure du
     # serveur HTTP Apache
     SetHandler  "proxy:unix:/path/to/app.sock|fcgi://localhost/"
@@ -233,7 +233,7 @@ ProxyVia On
 
       <example>
       <highlight language="config">
-          ProxyPass /example http://backend.example.com connectiontimeout=5 timeout=30
+          ProxyPass "/example" "http://backend.example.com" connectiontimeout=5 timeout=30
          </highlight>
       </example>
       
@@ -246,7 +246,7 @@ ProxyVia On
 
       <example>
       <highlight language="config">
-          ProxySet http://backend.example.com connectiontimeout=5 timeout=30
+          ProxySet "http://backend.example.com" connectiontimeout=5 timeout=30
          </highlight>
       </example>
       
@@ -256,7 +256,7 @@ ProxyVia On
       module="mod_proxy">ProxySet</directive> :</p>
 
       <highlight language="config">
-&lt;Proxy http://backend.example.com&gt;
+&lt;Proxy "http://backend.example.com"&gt;
   ProxySet connectiontimeout=5 timeout=30
 &lt;/Proxy&gt;
       </highlight>
@@ -279,8 +279,8 @@ ProxyVia On
       original, y compris un &eacute;ventuel chemin donn&eacute; :</p>
 
       <highlight language="config">
-ProxyPass /examples http://backend.example.com/examples
-ProxyPass /docs http://backend.example.com/docs
+ProxyPass "/examples" "http://backend.example.com/examples"
+ProxyPass "/docs" "http://backend.example.com/docs"
       </highlight>
 
       <p>Dans cet exemple, deux workers diff&eacute;rents sont d&eacute;finis, chacun
@@ -294,8 +294,8 @@ ProxyPass /docs http://backend.example.com/docs
        dans le fichier de configuration. Dans l'exemple suivant,</p>
 
         <highlight language="config">
-ProxyPass /apps http://backend.example.com/ timeout=60
-ProxyPass /examples http://backend.example.com/examples timeout=10
+ProxyPass "/apps" "http://backend.example.com/" timeout=60
+ProxyPass "/examples" "http://backend.example.com/examples" timeout=10
         </highlight>
 
         <p>le second worker n'est pas vraiment cr&eacute;&eacute;. C'est le premier
@@ -354,7 +354,7 @@ ProxyPass /examples http://backend.example.com/examples timeout=10
       l'exemple suivant :</p>
 
       <highlight language="config">
-&lt;Proxy *&gt;
+&lt;Proxy "*"&gt;
   Require ip 192.168.0
 &lt;/Proxy&gt;
       </highlight>
@@ -433,8 +433,8 @@ ProxyPass /examples http://backend.example.com/examples timeout=10
       <code>proxy-nokeepalive</code>.</p>
 
       <highlight language="config">
-&lt;Location /buggyappserver/&gt;
-  ProxyPass http://buggyappserver:7001/foo/
+&lt;Location "/buggyappserver/"&gt;
+  ProxyPass "http://buggyappserver:7001/foo/"
   SetEnv force-proxy-request-1.0 1
   SetEnv proxy-nokeepalive 1
 &lt;/Location&gt;
@@ -538,7 +538,7 @@ mandat&eacute;es</description>
     <code>votre-reseau.example.com</code> :</p>
 
     <highlight language="config">
-&lt;Proxy *&gt;
+&lt;Proxy "*"&gt;
   Require host votre-reseau.example.com
 &lt;/Proxy&gt;
     </highlight>
@@ -549,7 +549,7 @@ mandat&eacute;es</description>
     l'interm&eacute;diaire du serveur mandataire :</p>
 
     <highlight language="config">    
-&lt;Proxy http://example.com/foo/*&gt;
+&lt;Proxy "http://example.com/foo/*"&gt;
   SetOutputFilter INCLUDES
 &lt;/Proxy&gt;
     </highlight>
@@ -559,7 +559,7 @@ mandat&eacute;es</description>
       elle commence par la <var>url-avec-jokers</var>, m&ecirc;me si le
       dernier segment de chemin de la directive ne correspond qu'&agrave; un
       pr&eacute;fixe de segment dee chemin de l'URL d'arri&egrave;re-plan. Par exemple, &lt;Proxy
-      http://example.com/foo&gt; correspondra entre autres aux URLs
+      "http://example.com/foo"&gt; correspondra entre autres aux URLs
       http://example.com/foo, http://example.com/foo/bar, et
       http://example.com/foobar. La correspondance de l'URL finale
       diff&egrave;re du comportement de la section <directive type="section"
@@ -634,7 +634,7 @@ mandat&eacute;es correspondant &agrave; une expression rationnelle</description>
     nomm&eacute;s.</p>
 
 <highlight language="config">
-&lt;ProxyMatch ^http://(?&lt;sitename&gt;[^/]+)&gt;
+&lt;ProxyMatch "^http://(?&lt;sitename&gt;[^/]+)"&gt;
     Require ldap-group cn=%{env:MATCH_SITENAME},ou=combined,o=Example
 &lt;/ProxyMatch&gt;
 </highlight>
@@ -736,9 +736,10 @@ requ&ecirc;tes</description>
 
     <example><title>Exemple</title>
       <highlight language="config">
-ProxyRemote http://goodguys.example.com/ http://mirrorguys.example.com:8000
-ProxyRemote * http://cleverproxy.localdomain
-ProxyRemote ftp http://ftpproxy.mydomain:8080
+ProxyRemote "http://goodguys.example.com/"
+"http://mirrorguys.example.com:8000"
+ProxyRemote "*" "http://cleverproxy.localdomain"
+ProxyRemote "ftp" "http://ftpproxy.mydomain:8080"
     </highlight>
     </example>
 
@@ -910,26 +911,26 @@ du serveur HTTP Apache.</compatibility>
 
     <example>
       <highlight language="config">
-&lt;Proxy balancer://hotcluster&gt;
-    BalancerMember http://www2.example.com:8080 loadfactor=1
-    BalancerMember http://www3.example.com:8080 loadfactor=2
+&lt;Proxy "balancer://hotcluster"&gt;
+    BalancerMember "http://www2.example.com:8080" loadfactor=1
+    BalancerMember "http://www3.example.com:8080" loadfactor=2
     ProxySet lbmethod=bytraffic
 &lt;/Proxy&gt;
       </highlight>
     </example>
 
     <highlight language="config">
-&lt;Proxy http://backend&gt;
+&lt;Proxy "http://backend"&gt;
     ProxySet keepalive=On
 &lt;/Proxy&gt;
     </highlight>
 
     <highlight language="config">
-        ProxySet balancer://foo lbmethod=bytraffic timeout=15
+        ProxySet "balancer://foo" lbmethod=bytraffic timeout=15
     </highlight>
 
     <highlight language="config">
-        ProxySet ajp://backend:7001 timeout=15
+        ProxySet "ajp://backend:7001" timeout=15
     </highlight>
 
    <note type="warning"><title>Avertissement</title>
@@ -988,8 +989,8 @@ sont support&eacute;s &agrave; partir de la version 2.4.7 du serveur HTTP Apache
     <code>http://example.com/</code> ; alors la ligne</p>
 
     <highlight language="config">
-&lt;Location /mirror/foo/&gt;
-    ProxyPass http://backend.example.com/
+&lt;Location "/mirror/foo/"&gt;
+    ProxyPass "http://backend.example.com/"
 &lt;/Location&gt;
     </highlight>
 
@@ -1004,7 +1005,7 @@ sont support&eacute;s &agrave; partir de la version 2.4.7 du serveur HTTP Apache
     href="mod_proxy_balancer.html#balancer_manager">Balancer Manager</a> :</p>
 
     <highlight language="config">
-        ProxyPass /miroir/foo/ http://backend.example.com/
+        ProxyPass "/miroir/foo/" "http://backend.example.com/"
     </highlight>
 
     <note type="warning">
@@ -1020,17 +1021,17 @@ sont support&eacute;s &agrave; partir de la version 2.4.7 du serveur HTTP Apache
     du mandat inverse, comme dans l'exemple suivant :</p>
 
     <highlight language="config">
-&lt;Location /mirror/foo/&gt;
-    ProxyPass http://backend.example.com/
+&lt;Location "/mirror/foo/"&gt;
+    ProxyPass "http://backend.example.com/"
 &lt;/Location&gt;
-&lt;Location /mirror/foo/i&gt;
-    ProxyPass !
+&lt;Location "/mirror/foo/i"&gt;
+    ProxyPass "!"
 &lt;/Location&gt;
     </highlight>
 
     <highlight language="config">
-ProxyPass /mirror/foo/i !
-ProxyPass /mirror/foo http://backend.example.com
+ProxyPass "/mirror/foo/i" "!"
+ProxyPass "/mirror/foo" "http://backend.example.com"
     </highlight>
 
     <p>va mandater toutes les requ&ecirc;tes pour <code>/miroir/foo</code>
@@ -1089,7 +1090,7 @@ ProxyPass /mirror/foo http://backend.example.com
 
     <example><title>Exemple</title>
     <highlight language="config">
-        ProxyPass /example http://backend.example.com max=20 ttl=120 retry=300
+        ProxyPass "/example" "http://backend.example.com" max=20 ttl=120 retry=300
        </highlight>
     </example>
 
@@ -1431,25 +1432,25 @@ ProxyPass /mirror/foo http://backend.example.com
     </table>
     <p>Exemple de configuration d'un r&eacute;partiteur de charge</p>
     <highlight language="config">
-ProxyPass /special-area http://special.example.com smax=5 max=10
-ProxyPass / balancer://mycluster/ stickysession=JSESSIONID|jsessionid nofailover=On
-&lt;Proxy balancer://mycluster&gt;
-    BalancerMember ajp://1.2.3.4:8009
-    BalancerMember ajp://1.2.3.5:8009 loadfactor=20
+ProxyPass "/special-area" "http://special.example.com" smax=5 max=10
+ProxyPass "/" "balancer://mycluster/" stickysession=JSESSIONID|jsessionid nofailover=On
+&lt;Proxy "balancer://mycluster"&gt;
+    BalancerMember "ajp://1.2.3.4:8009"
+    BalancerMember "ajp://1.2.3.5:8009" loadfactor=20
     # Less powerful server, don't send as many requests there,
-    BalancerMember ajp://1.2.3.6:8009 loadfactor=5
+    BalancerMember "ajp://1.2.3.6:8009" loadfactor=5
 &lt;/Proxy&gt;
     </highlight>
 
     <p>Configuration d'un serveur cible de r&eacute;serve qui ne sera utilis&eacute; que si
     aucun autre serveur cible n'est disponible</p>
     <highlight language="config">
-ProxyPass / balancer://hotcluster/ 
-&lt;Proxy balancer://hotcluster&gt;
-    BalancerMember ajp://1.2.3.4:8009 loadfactor=1
-    BalancerMember ajp://1.2.3.5:8009 loadfactor=2
+ProxyPass "/" "balancer://hotcluster/"
+&lt;Proxy "balancer://hotcluster"&gt;
+    BalancerMember "ajp://1.2.3.4:8009" loadfactor=1
+    BalancerMember "ajp://1.2.3.5:8009" loadfactor=2
     # The server below is on hot standby
-    BalancerMember ajp://1.2.3.6:8009 status=+H
+    BalancerMember "ajp://1.2.3.6:8009" status=+H
     ProxySet lbmethod=bytraffic
 &lt;/Proxy&gt;
     </highlight>
@@ -1505,14 +1506,14 @@ ProxyPass / balancer://hotcluster/
     <highlight language="config">
 RewriteEngine On
 
-RewriteCond %{HTTPS} =off
-RewriteRule . - [E=protocol:http]
-RewriteCond %{HTTPS} =on
-RewriteRule . - [E=protocol:https]
+RewriteCond "%{HTTPS}" =off
+RewriteRule "". "-" [E=protocol:http]
+RewriteCond "%{HTTPS}" =on
+RewriteRule "." "-" [E=protocol:https]
 
-RewriteRule ^/mirror/foo/(.*) %{ENV:protocol}://backend.example.com/$1 [P]
-ProxyPassReverse  /mirror/foo/ http://backend.example.com/
-ProxyPassReverse  /mirror/foo/ https://backend.example.com/
+RewriteRule "^/mirror/foo/(.*)" "%{ENV:protocol}://backend.example.com/$1" [P]
+ProxyPassReverse  "/mirror/foo/" "http://backend.example.com/"
+ProxyPassReverse  "/mirror/foo/" "https://backend.example.com/"
     </highlight>
 
 </usage>
@@ -1545,7 +1546,7 @@ du serveur local en utilisant des expressions rationnelles</description>
     <code>http://example.com/</code> ; alors</p>
 
     <highlight language="config">
-      ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com/$1
+      ProxyPassMatch "^(/.*\.gif)$" "http://backend.example.com/$1"
     </highlight>
 
     <p>va provoquer la conversion interne de la requ&ecirc;te locale
@@ -1558,14 +1559,15 @@ du serveur local en utilisant des expressions rationnelles</description>
       doit aussi l'&ecirc;tre apr&egrave;s). Ceci limite les correspondances que vous
       pouvez utiliser. Par exemple, si l'on avait utilis&eacute;</p>
       <highlight language="config">
-        ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com:8000$1
+        ProxyPassMatch "^(/.*\.gif)$"
+       "http://backend.example.com:8000$1"
       </highlight>
       <p>dans l'exemple pr&eacute;c&eacute;dent, nous aurions provoqu&eacute; une erreur de
       syntaxe au d&eacute;marrage du serveur. C'est une bogue (PR 46665 dans
       ASF bugzilla), et il est possible de la contourner en reformulant
       la correspondance :</p>
       <highlight language="config">
-        ProxyPassMatch ^/(.*\.gif)$ http://backend.example.com:8000/$1
+        ProxyPassMatch "^/(.*\.gif)$" "http://backend.example.com:8000/$1"
       </highlight>
     </note>
 
@@ -1641,10 +1643,10 @@ par un serveur mandat&eacute; en inverse</description>
     <code>http://example.com/</code> ; alors</p>
 
     <highlight language="config">
-ProxyPass         /mirror/foo/ http://backend.example.com/
-ProxyPassReverse  /mirror/foo/ http://backend.example.com/
-ProxyPassReverseCookieDomain  backend.example.com  public.example.com
-ProxyPassReverseCookiePath  /  /mirror/foo/
+ProxyPass         "/mirror/foo/" "http://backend.example.com/"
+ProxyPassReverse  "/mirror/foo/" "http://backend.example.com/"
+ProxyPassReverseCookieDomain  "backend.example.com" "public.example.com"
+ProxyPassReverseCookiePath  "/"  "/mirror/foo/"
     </highlight>
 
     <p>ne va pas seulement provoquer la conversion interne d'une requ&ecirc;te
@@ -1738,7 +1740,7 @@ Dans l'exemple fourni avec la directive <directive
 module="mod_proxy">ProxyPassReverse</directive>, la directive :
 </p>
     <highlight language="config">
-      ProxyPassReverseCookiePath  /  /mirror/foo/
+      ProxyPassReverseCookiePath  "/"  "/mirror/foo/"
     </highlight>
 <p>
 va r&eacute;&eacute;crire un cookie poss&eacute;dant un chemin d'arri&egrave;re-plan <code>/</code>
@@ -1771,7 +1773,7 @@ mandataire</description>
 
     <example><title>Exemple</title>
     <highlight language="config">
-      ProxyBlock news.example.com auctions.example.com friends.example.com
+      ProxyBlock "news.example.com" "auctions.example.com" "friends.example.com"
       </highlight>
     </example>
 
@@ -1783,7 +1785,7 @@ mandataire</description>
     <p>Notez aussi que</p>
 
     <highlight language="config">
-      ProxyBlock *
+      ProxyBlock "*"
     </highlight>
 
     <p>bloque les connexions vers tous les sites.</p>
@@ -1907,8 +1909,8 @@ directement</description>
 
     <example><title>Exemple</title>
       <highlight language="config">
-ProxyRemote  *  http://firewall.example.com:81
-NoProxy         .example.com 192.168.112.0/21
+ProxyRemote  "*"  "http://firewall.example.com:81"
+NoProxy         ".example.com" "192.168.112.0/21"
     </highlight>
     </example>
 
@@ -2072,9 +2074,9 @@ mandat&eacute;es</description>
 
     <example><title>Exemple</title>
     <highlight language="config">
-      ProxyRemote  *  http://firewall.example.com:81<br />
-      NoProxy         .example.com 192.168.112.0/21<br />
-      ProxyDomain     .example.com
+      ProxyRemote  "*"  "http://firewall.example.com:81"<br />
+      NoProxy         ".example.com" "192.168.112.0/21"<br />
+      ProxyDomain     ".example.com"
       </highlight>
     </example>
 </usage>