]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
update transformation
authorTakashi Sato <takashi@apache.org>
Wed, 21 May 2008 04:22:41 +0000 (04:22 +0000)
committerTakashi Sato <takashi@apache.org>
Wed, 21 May 2008 04:22:41 +0000 (04:22 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@658550 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.html.en
docs/manual/mod/core.xml.de
docs/manual/mod/core.xml.ja
docs/manual/mod/mod_proxy.html.en
docs/manual/mod/mod_proxy.xml.ja
docs/manual/mod/mod_setenvif.html.en
docs/manual/mod/mod_setenvif.xml.ja
docs/manual/mod/mod_setenvif.xml.ko

index 4f082b048a76feb0d1e097b2103dbf616f25f4bc..51a0cdbcb5b71400816c9e0d42439213053b86af 100644 (file)
@@ -1401,13 +1401,28 @@ if a test is true at startup</td></tr>
     multiple-parameter tests. Example:</p>
 
     <div class="example"><p><code>
-      httpd -DReverseProxy ...<br />
+      httpd -DReverseProxy -DUseCache -DMemCache...<br />
       <br />
       # httpd.conf<br />
       &lt;IfDefine ReverseProxy&gt;<br />
       <span class="indent">
         LoadModule rewrite_module modules/mod_rewrite.so<br />
         LoadModule proxy_module   modules/libproxy.so<br />
+        &lt;IfDefine UseCache&gt;<br />
+        <span class="indent">
+          LoadModule cache_module   modules/mod_cache.so<br />
+          &lt;IfDefine MemCache&gt;<br />
+          <span class="indent">
+            LoadModule mem_cache_module   modules/mod_mem_cache.so<br />
+          </span>
+          &lt;/IfDefine&gt;<br />
+          &lt;IfDefine !MemCache&gt;<br />
+          <span class="indent">
+            LoadModule disk_cache_module   modules/mod_disk_cache.so<br />
+          </span>
+          &lt;/IfDefine&gt;
+        </span>
+        &lt;/IfDefine&gt;
       </span>
       &lt;/IfDefine&gt;
     </code></p></div>
index 67c8bc28c2fb14e0c078fd28934a705fc430ba4f..faea17f1be3439904082fb68bdaa608b4e53b9b8 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.de.xsl"?>
-<!-- English Revision: 167959:657842 (outdated) -->
+<!-- English Revision: 167959:658549 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 51caae6674f08d445a46cd1b2f086c18e0f155ec..db3ed82aa7a8baf25927f40b75233707c21319a0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="iso-2022-jp"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 190982:657842 (outdated) -->
+<!-- English Revision: 190982:658549 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index e340e381fcaa7fa7399812418edb5e111d73ac04..6ea7969449d2d0d236419213e7ff27413944f9c8 100644 (file)
@@ -1275,9 +1275,9 @@ connections</td></tr>
     this module.</p>
 
     <div class="example"><h3>Example</h3><p><code>
-      ProxyRemote http://goodguys.com/ http://mirrorguys.com:8000<br />
-      ProxyRemote * http://cleversite.com<br />
-      ProxyRemote ftp http://ftpproxy.mydomain.com:8080
+      ProxyRemote http://goodguys.example.com/ http://mirrorguys.example.com:8000<br />
+      ProxyRemote * http://cleverproxy.localdomain<br />
+      ProxyRemote ftp http://ftpproxy.mydomain:8080
     </code></p></div>
 
     <p>In the last example, the proxy will forward FTP requests, encapsulated
index 54ec2ecdc3ab716b5a78bbc0c9fcf235a96b6e7c..4cb751a5bc8dfb78f9c6b74a58c797bdbba8441b 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="iso-2022-jp"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 189754:657842 (outdated) -->
+<!-- English Revision: 189754:658546 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 2208134e2408824006bcb110ad49f9a201efc5b8..3fe1334aee9fe545a0bcaeefc363c5c67b052381 100644 (file)
@@ -231,7 +231,7 @@ of</p>
    SetEnvIf Request_URI "\.jpg$" object_is_image=jpg<br />
    SetEnvIf Request_URI "\.xbm$" object_is_image=xbm<br />
         :<br />
-   SetEnvIf Referer www\.mydomain\.com intra_site_referral<br />
+   SetEnvIf Referer www\.mydomain\.example\.com intra_site_referral<br />
         :<br />
    SetEnvIf object_is_image xbm XBIT_PROCESSING=1<br />
         :<br />
@@ -244,7 +244,7 @@ of</p>
     <code>object_is_image</code> if the request was for an image
     file, and the fourth sets <code>intra_site_referral</code> if
     the referring page was somewhere on the
-    <code>www.mydomain.com</code> Web site.</p>
+    <code>www.mydomain.example.com</code> Web site.</p>
 
     <p>The sixth example will set the <code>NetscapeComment</code>
     environment variable to the string found in the corresponding
index cb4c6fec1ba839c9ddca8e2d76f2ff3f40c0b77e..4c7902cc2bf24668200b17c0c326ee4ba378bdf9 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="iso-2022-jp"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 151408:627428 (outdated) -->
+<!-- English Revision: 151408:658546 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index fdd928cb4d74c8c9f8b041ad9e1fcbfaa908cedf..02b0edd2ec4ec5162f6a780ea35a70254fdd3bbc 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:627428 (outdated) -->
+<!-- English Revision: 151408:658546 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more