]> granicus.if.org Git - apache/commitdiff
generated files
authorJeff Trawick <trawick@apache.org>
Tue, 7 Dec 2010 16:53:56 +0000 (16:53 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 7 Dec 2010 16:53:56 +0000 (16:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1043127 13f79535-47bb-0310-9956-ffa450edef68

30 files changed:
docs/manual/mod/mod_access_compat.html.en
docs/manual/mod/mod_access_compat.xml.ja
docs/manual/mod/mod_authz_host.html.en
docs/manual/mod/mod_cache.html.en
docs/manual/mod/mod_cache.xml.ja
docs/manual/mod/mod_cache.xml.ko
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
docs/manual/mod/mod_setenvif.xml.tr
docs/manual/platform/windows.html.en
docs/manual/platform/windows.xml.ko
docs/manual/rewrite/flags.html.en
docs/manual/upgrading.html.en
docs/manual/upgrading.xml.fr
docs/manual/vhosts/examples.html.en
docs/manual/vhosts/examples.xml.fr
docs/manual/vhosts/examples.xml.ja
docs/manual/vhosts/examples.xml.ko
docs/manual/vhosts/examples.xml.tr
docs/manual/vhosts/ip-based.html.en
docs/manual/vhosts/ip-based.xml.fr
docs/manual/vhosts/ip-based.xml.ja
docs/manual/vhosts/ip-based.xml.ko
docs/manual/vhosts/ip-based.xml.tr
docs/manual/vhosts/mass.html.en
docs/manual/vhosts/mass.xml.ko
docs/manual/vhosts/mass.xml.tr

index 00ff671960f77a77de72c2287261347f15d1b6a3..26abe5d90ddea6d5d9a23b5bd625553d8c840106 100644 (file)
@@ -114,13 +114,13 @@ server</td></tr>
 
       <dd>
       <div class="example"><h3>Example:</h3><p><code>
-        Allow from apache.org<br />
+        Allow from example.org<br />
         Allow from .net example.edu
       </code></p></div>
       <p>Hosts whose names match, or end in, this string are allowed
       access. Only complete components are matched, so the above
-      example will match <code>foo.apache.org</code> but it will not
-      match <code>fooapache.org</code>. This configuration will cause
+      example will match <code>foo.example.org</code> but it will not
+      match <code>fooexample.org</code>. This configuration will cause
       Apache httpd to perform a double DNS lookup on the client IP
       address, regardless of the setting of the <code class="directive"><a href="../mod/core.html#hostnamelookups">HostnameLookups</a></code> directive.  It will do
       a reverse DNS lookup on the IP address to find the associated
@@ -315,35 +315,35 @@ evaluated.</td></tr>
       </tr>
     </table>
 
-    <p>In the following example, all hosts in the apache.org domain
+    <p>In the following example, all hosts in the example.org domain
     are allowed access; all other hosts are denied access.</p>
 
     <div class="example"><p><code>
       Order Deny,Allow<br />
       Deny from all<br />
-      Allow from apache.org
+      Allow from example.org
     </code></p></div>
 
-    <p>In the next example, all hosts in the apache.org domain are
+    <p>In the next example, all hosts in the example.org domain are
     allowed access, except for the hosts which are in the
-    foo.apache.org subdomain, who are denied access. All hosts not
-    in the apache.org domain are denied access because the default
+    foo.example.org subdomain, who are denied access. All hosts not
+    in the example.org domain are denied access because the default
     state is to <code class="directive"><a href="#deny">Deny</a></code>
     access to the server.</p>
 
     <div class="example"><p><code>
       Order Allow,Deny<br />
-      Allow from apache.org<br />
-      Deny from foo.apache.org
+      Allow from example.org<br />
+      Deny from foo.example.org
     </code></p></div>
 
     <p>On the other hand, if the <code class="directive">Order</code> in the
     last example is changed to <code>Deny,Allow</code>, all hosts will
     be allowed access. This happens because, regardless of the actual
     ordering of the directives in the configuration file, the
-    <code>Allow from apache.org</code> will be evaluated last and will
-    override the <code>Deny from foo.apache.org</code>. All hosts not in
-    the <code>apache.org</code> domain will also be allowed access
+    <code>Allow from example.org</code> will be evaluated last and will
+    override the <code>Deny from foo.example.org</code>. All hosts not in
+    the <code>example.org</code> domain will also be allowed access
     because the default state is <code class="directive"><a href="#allow">Allow</a></code>.</p>
 
     <p>The presence of an <code class="directive">Order</code> directive can
index d7979ddf9b7fd71dd2fcd62a07241283a0cf521e..b6b1ad51082a9aa308cdf24a1097d36506b454e0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 675568:926436 (outdated) -->
+<!-- English Revision: 675568:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 053f12f2a2af71a7b027d159b3c898af898f8f1e..9838cccb5319a99f9beabe83c1f437bc41053632 100644 (file)
@@ -141,14 +141,14 @@ address)</td></tr>
     <p>A (partial) domain-name</p>
     
     <div class="example"><p><code>
-    Require host apache.org<br />
+    Require host example.org<br />
     Require host .net example.edu
     </code></p></div>
     
     <p>Hosts whose names match, or end in, this string are allowed
     access. Only complete components are matched, so the above
-    example will match <code>foo.apache.org</code> but it will not
-    match <code>fooapache.org</code>. This configuration will cause
+    example will match <code>foo.example.org</code> but it will not
+    match <code>fooexample.org</code>. This configuration will cause
     Apache to perform a double reverse DNS lookup on the client IP
     address, regardless of the setting of the <code class="directive"><a href="../mod/core.html#hostnamelookups">HostnameLookups</a></code> directive.  It will do
     a reverse DNS lookup on the IP address to find the associated
index 9bb206c506a6a9bb79287f21f6184939cf3f96d8..448790d4d7db2051b4547dcd6082104b8653b90c 100644 (file)
@@ -475,8 +475,8 @@ manager</td></tr>
       CacheEnable  disk  /<br /><br />
       # Cache FTP-proxied url's<br />
       CacheEnable  disk  ftp://<br /><br />
-      # Cache content from www.apache.org<br />
-      CacheEnable  disk  http://www.apache.org/<br />
+      # Cache content from www.example.org<br />
+      CacheEnable  disk  http://www.example.org/<br />
     </code></p></div>
 
     <p>A hostname starting with a <strong>"*"</strong> matches all hostnames with
@@ -484,10 +484,10 @@ manager</td></tr>
     hostnames containing the domain components that follow.</p>
 
     <div class="example"><p><code>
-      # Match www.apache.org, and fooapache.org<br />
-      CacheEnable  disk  http://*apache.org/<br />
-      # Match www.apache.org, but not fooapache.org<br />
-      CacheEnable  disk  http://.apache.org/<br />
+      # Match www.example.org, and fooexample.org<br />
+      CacheEnable  disk  http://*example.org/<br />
+      # Match www.example.org, but not fooexample.org<br />
+      CacheEnable  disk  http://.example.org/<br />
     </code></p></div>
 
     <p> The <code>no-cache</code> environment variable can be set to 
index 86ab6cefe05b573aeca70e976fafc65048133972..1d86b7e32c36abe0619abc90ae3ccb593a1881ba 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 504183:1037244 (outdated) -->
+<!-- English Revision: 504183:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 4f70fd977dbc99af32a3ccfa8dbf565a466aa6fc..5f10fa923929e83475af989dab9f6010bfbbc90b 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: 105569:1037244 (outdated) -->
+<!-- English Revision: 105569:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index d1f0d960657076448e71ce0fa4b7eadc6313cf06..ce14d0c72dee6772bbadf9b4fe8733e33558412b 100644 (file)
@@ -520,7 +520,7 @@ directly</td></tr>
     all ending in <var>Domain</var>).</p>
 
     <div class="example"><h3>Examples</h3><p><code>
-      .com .apache.org.
+      .com .example.org.
     </code></p></div>
 
     <p>To distinguish <var>Domain</var>s from <var><a href="#hostname">Hostname</a></var>s (both syntactically and semantically; a DNS domain can
@@ -588,8 +588,8 @@ directly</td></tr>
     of hosts with different <var><a href="#ipaddr">IPAddr</a></var>s).</p>
 
     <div class="example"><h3>Examples</h3><p><code>
-      prep.ai.example.com<br />
-      www.apache.org
+      prep.ai.example.edu<br />
+      www.example.org
     </code></p></div>
 
     <div class="note"><h3>Note</h3>
index faf695d5d0d268f41bbb93859b31f094ab756d54..7f14fe58ba097e853036fd3e13cef66130a36369 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 344971:1042758 (outdated) -->
+<!-- English Revision: 344971:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 4fef20de8eb1c2426f543ad2a48d9c14f1efdce0..daa393dcf1207a10b8d703b8fbb35a400da50dff 100644 (file)
@@ -322,13 +322,13 @@ without respect to case</td></tr>
     and differs only in that the regular expression matching is
     performed in a case-insensitive manner. For example:</p>
 <div class="example"><p><code>
-   SetEnvIfNoCase Host Apache\.Org site=apache
+   SetEnvIfNoCase Host Example\.Org site=example
 </code></p></div>
 
     <p>This will cause the <code>site</code> environment variable
-    to be set to "<code>apache</code>" if the HTTP request header
+    to be set to "<code>example</code>" if the HTTP request header
     field <code>Host:</code> was included and contained
-    <code>Apache.Org</code>, <code>apache.org</code>, or any other
+    <code>Example.Org</code>, <code>example.org</code>, or any other
     combination.</p>
 
 </div>
index ccd17f4d69f8d8dd8682925e63a20998ca639376..8685778069e74647b8d198fb82135fd68ed1f176 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 658546:1040517 (outdated) -->
+<!-- English Revision: 658546:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index bef1c6233009e6f3013642ecdd7049b9c5aa29b8..f490645c48e945cb7d89949dddbb72182211a2a8 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:1040517 (outdated) -->
+<!-- English Revision: 151408:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 446f0d3b95cc2ccce8f0a973ab238b3ac9d36409..ca0e76ca6f07cc4e3fe644b27b655931b5ab4645 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?>
-<!-- English Revision: 658546:1040517 (outdated) -->
+<!-- English Revision: 658546:1043126 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>
index 7cf7ab78b676e094934e9a84efc54ea6589efa2a..9cd5a49cef49bdb346b794c4c159e1efd9abfe0f 100644 (file)
     <ol>
       <li><p><strong>Network Domain.</strong> Enter the DNS domain in which
       your server is or will be registered in. For example, if your
-      server's full DNS name is <code>server.mydomain.net</code>, you would
-      type <code>mydomain.net</code> here.</p></li>
+      server's full DNS name is <code>server.example.net</code>, you would
+      type <code>example.net</code> here.</p></li>
 
       <li><p><strong>Server Name.</strong> Your server's full DNS name.
-      From the example above, you would type <code>server.mydomain.net</code>
+      From the example above, you would type <code>server.example.net</code>
       here.</p></li>
 
       <li><p><strong>Administrator's Email Address.</strong> Enter the
index 976b3a8a41ef96dc2a757adf7e3f6ca023d8d2cb..e6105b4b0fc202b64d9c6605c8d487512bc943d0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1041945 (outdated) -->
+<!-- English Revision: 105989:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 8b0079b7f86ab751b472b6976f1b22a9e6c156ed..92a91e985f431680c9d89141ce00e28aa7450429 100644 (file)
@@ -166,14 +166,14 @@ browsers that support this feature.</dd>
 
 <div class="example"><p><code>
 RewriteEngine On<br />
-RewriteRule ^/index\.html - [CO=frontdoor:yes:.apache.org:1440:/]
+RewriteRule ^/index\.html - [CO=frontdoor:yes:.example.com:1440:/]
 </code></p></div>
 
 <p>In the example give, the rule doesn't rewrite the request.
 The "-" rewrite target tells mod_rewrite to pass the request
 through unchanged. Instead, it sets a cookie
 called 'frontdoor' to a value of 'yes'. The cookie is valid for any host
-in the <code>.apache.org</code> domain. It will be set to expire in 1440
+in the <code>.example.com</code> domain. It will be set to expire in 1440
 minutes (24 hours) and will be returned for all URIs.</p>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
index 8a1d533e9f020176c126d53d88d54bb707017c30..ced169cf389f196c598a66d361cae6a0ec145f3c 100644 (file)
         Require all granted
       </code></p></div>
 
-      <p>In the following example, all hosts in the apache.org domain
+      <p>In the following example, all hosts in the example.org domain
       are allowed access; all other hosts are denied access.</p>
 
       <div class="example"><h3>2.2 configuration:</h3><p><code>
         
         Order Deny,Allow<br />
         Deny from all<br />
-        Allow from apache.org
+        Allow from example.org
       </code></p></div>
       <div class="example"><h3>2.4 configuration:</h3><p><code>
         
-        Require host apache.org
+        Require host example.org
       </code></p></div>
     
 
index 9d3243764ece87b102df5723cfc00b0351b22059..3d327f99a2c8602db5018fb846bdc70f44ad04a0 100644 (file)
@@ -3,7 +3,7 @@
 <?xml-stylesheet type="text/xsl" href="./style/manual.fr.xsl"?>
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
-<!-- English Revision: 1021924:1037244 (outdated) -->
+<!-- English Revision: 1021924:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index f9cffac8034b70de24c0c7a2d307530961d358e6..b2113a2aaf9b96a15664169bdd0f26e5cf5d52b6 100644 (file)
     &lt;VirtualHost 172.20.30.40&gt;<br />
     <span class="indent">
         DocumentRoot /www/example3<br />
-        ServerName www.example3.net<br />
+        ServerName www.example.net<br />
     </span>
     &lt;/VirtualHost&gt;<br />
     <br />
     &lt;VirtualHost 172.20.30.50&gt;<br />
     <span class="indent">
         DocumentRoot /www/example4<br />
-        ServerName www.example4.edu<br />
+        ServerName www.example.edu<br />
     </span>
     &lt;/VirtualHost&gt;<br />
     <br />
     &lt;VirtualHost 172.20.30.60&gt;<br />
     <span class="indent">
         DocumentRoot /www/example5<br />
-        ServerName www.example5.gov<br />
+        ServerName www.example.gov<br />
     </span>
     &lt;/VirtualHost&gt;
     </code></p></div>
index 2275cefc3a94405100d44684095771c5864284d3..ca12c9015a3892c9347e6e3b44a4003f5401871b 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='ISO-8859-1' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1031197:1042758 (outdated) -->
+<!-- English Revision: 1031197:1043126 (outdated) -->
 <!-- French translation by Vincent Deffontaines, Alain B., review by  -->
 <!-- updated by Lucien Gentis -->
 
index e5eacd6a01cca135413a17bf000a7871dc637829..641444f75afb7387b57601e6352d15e6ff5828a0 100644 (file)
@@ -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.ja.xsl"?>
-<!-- English Revision: 659902:1042758 (outdated) -->
+<!-- English Revision: 659902:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index ca612998f253a5ff46e0ceff602d29ad24c70b6b..8532e7ae5b19760585c0841f18458a60d828ce18 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='EUC-KR' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1042758 (outdated) -->
+<!-- English Revision: 105989:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 60d492e45c333aa7eca3e0a5ee0c371e86a01200..6bfc84005d85d38aeef10fa0eb6482902d2a6b8b 100644 (file)
@@ -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.tr.xsl"?>
-<!-- English Revision: 659902:1042758 (outdated) -->
+<!-- English Revision: 659902:1043126 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by:  Orhan Berent <berent belgeler.org>
index d5b98cc2b876dd04f05c4b16fa37a08af84618d1..f2d53312c242d8c63b1340bb89c2dcbad0c691d9 100644 (file)
 
     <div class="example"><p><code>
     &lt;VirtualHost 172.20.30.40:80&gt;<br />
-    ServerAdmin webmaster@example1.com<br />
-    DocumentRoot /www/vhosts/example1<br />
-    ServerName www.example1.com<br />
-    ErrorLog /www/logs/example1/error_log<br />
-    CustomLog /www/logs/example1/access_log combined<br />
+    ServerAdmin webmaster@www1.example.com<br />
+    DocumentRoot /www/vhosts/www1<br />
+    ServerName www1.example.com<br />
+    ErrorLog /www/logs/www1/error_log<br />
+    CustomLog /www/logs/www1/access_log combined<br />
     &lt;/VirtualHost&gt;<br />
     <br />
     &lt;VirtualHost 172.20.30.50:80&gt;<br />
-    ServerAdmin webmaster@example2.org<br />
-    DocumentRoot /www/vhosts/example2<br />
-    ServerName www.example2.org<br />
-    ErrorLog /www/logs/example2/error_log<br />
-    CustomLog /www/logs/example2/access_log combined<br />
+    ServerAdmin webmaster@www2.example.org<br />
+    DocumentRoot /www/vhosts/www2<br />
+    ServerName www2.example.org<br />
+    ErrorLog /www/logs/www2/error_log<br />
+    CustomLog /www/logs/www2/access_log combined<br />
     &lt;/VirtualHost&gt;
     </code></p></div>
 
index 965edd86b6b71d6d1d719aae19b61bbacea47638..40bc1b45396da7fe36923e8c08a179e1987c67d4 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='ISO-8859-1' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
-<!-- English Revision: 987242:1043011 (outdated) -->
+<!-- English Revision: 987242:1043126 (outdated) -->
 <!-- French translation by alain B, review by Vincent Deffontaines -->
 
 <!--
index 7bb8fb6465387a59f2d0f7d5c1d933025da7e6b7..9d8df1851fda7b8b5c67c2f531ae97d8c3e1d827 100644 (file)
@@ -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.ja.xsl"?>
-<!-- English Revision: 659902:1043011 (outdated) -->
+<!-- English Revision: 659902:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 75f920f4102b8cd2a6b565f61f4c1232017c0b65..80d91c7322187ea1a63e9aae647ab96453ae669f 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='EUC-KR' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1043011 (outdated) -->
+<!-- English Revision: 105989:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 926ba136faf175d64e0a3c698e070f84f852ce33..26a810dcf8dae0b15627fa5c64444b2e846409d8 100644 (file)
@@ -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.tr.xsl"?>
-<!-- English Revision: 752951:1043011 (outdated) -->
+<!-- English Revision: 752951:1043126 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>
index fa247a11decdd78f5cef6b100747d066d5eacdd5..a1de6056ef4a16b94b585c2224e178ce20fee429 100644 (file)
@@ -55,21 +55,21 @@ mod_rewrite</a></li>
 <div class="example"><pre>
 NameVirtualHost 111.22.33.44
 &lt;VirtualHost 111.22.33.44&gt;
-    ServerName                 www.customer-1.com
-    DocumentRoot        /www/hosts/www.customer-1.com/docs
-    ScriptAlias  /cgi-bin/  /www/hosts/www.customer-1.com/cgi-bin
+    ServerName                 customer-1.example.com
+    DocumentRoot        /www/hosts/customer-1.example.com/docs
+    ScriptAlias  /cgi-bin/  /www/hosts/customer-1.example.com/cgi-bin
 &lt;/VirtualHost&gt;
 
 &lt;VirtualHost 111.22.33.44&gt;
-    ServerName                 www.customer-2.com
-    DocumentRoot        /www/hosts/www.customer-2.com/docs
-    ScriptAlias  /cgi-bin/  /www/hosts/www.customer-2.com/cgi-bin
+    ServerName                 customer-2.example.com
+    DocumentRoot        /www/hosts/customer-2.example.com/docs
+    ScriptAlias  /cgi-bin/  /www/hosts/customer-2.example.com/cgi-bin
 &lt;/VirtualHost&gt;
 
 &lt;VirtualHost 111.22.33.44&gt;
-    ServerName                 www.customer-N.com
-    DocumentRoot        /www/hosts/www.customer-N.com/docs
-    ScriptAlias  /cgi-bin/  /www/hosts/www.customer-N.com/cgi-bin
+    ServerName                 customer-N.example.com
+    DocumentRoot        /www/hosts/customer-N.example.com/docs
+    ScriptAlias  /cgi-bin/  /www/hosts/customer-N.example.com/cgi-bin
 &lt;/VirtualHost&gt;
 </pre></div>
 
@@ -188,7 +188,7 @@ examples.</p>
     ISP's web hosting server. Using <code>%2</code>,
     we can select substrings of the server name to
     use in the filename so that, for example, the documents for
-    <code>www.user.isp.com</code> are found in
+    <code>www.user.example.com</code> are found in
     <code>/home/user/www</code>. It uses a single <code>cgi-bin</code>
     directory instead of one per virtual host.</p>
 
@@ -244,7 +244,7 @@ LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon<br />
 <br />
 &lt;VirtualHost 111.22.33.44&gt;<br />
 <span class="indent">
-    ServerName www.commercial.isp.com<br />
+    ServerName www.commercial.example.com<br />
     <br />
     CustomLog logs/access_log.commercial vcommon<br />
     <br />
@@ -255,7 +255,7 @@ LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon<br />
 <br />
 &lt;VirtualHost 111.22.33.45&gt;<br />
 <span class="indent">
-    ServerName www.homepages.isp.com<br />
+    ServerName www.homepages.example.com<br />
     <br />
     CustomLog logs/access_log.homepages vcommon<br />
     <br />
index a8d1f9d1099a0c002f3c2581983a3c8a20650783..e3d1c22c75f3dff633d2de36c9cd9c84745c0d1f 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='EUC-KR' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:931520 (outdated) -->
+<!-- English Revision: 151408:1043126 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 3bb484613c08f4b9f7112493f448d5592511a322..54785d64365c05138904e2bc56c1087e996b57b1 100644 (file)
@@ -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.tr.xsl"?>
-<!-- English Revision: 659902:931520 (outdated) -->
+<!-- English Revision: 659902:1043126 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>