Skip to content

Commit 06dee73

Browse files
author
Takashi Sato
committed
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@654581 13f79535-47bb-0310-9956-ffa450edef68
1 parent 966fd55 commit 06dee73

48 files changed

Lines changed: 239 additions & 118 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/manual/bind.html.de

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
<a href="./ko/bind.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
2626
<a href="./tr/bind.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
2727
</div>
28+
<div class="outofdate">Diese Übersetzung ist möglicherweise
29+
nicht mehr aktuell. Bitte prüfen Sie die englische Version auf
30+
die neuesten Änderungen.</div>
2831

2932
<p>Konfiguration der vom Apache verwendeten Adressen und Ports.</p>
3033
</div>
@@ -72,8 +75,8 @@
7275
Netzwerkinterfaces und Ports zu akzeptieren zu lassen, geben Sie an:</p>
7376

7477
<div class="example"><p><code>
75-
Listen 192.170.2.1:80<br />
76-
Listen 192.170.2.5:8000
78+
Listen 192.0.2.1:80<br />
79+
Listen 192.0.2.5:8000
7780
</code></p></div>
7881

7982
<p>IPv6-Adressen müssen wie im folgenden Beispiel in eckigen
@@ -124,7 +127,7 @@
124127

125128
<div class="example"><p><code>
126129
Listen 0.0.0.0:80<br />
127-
Listen 192.170.2.1:80
130+
Listen 192.0.2.1:80
128131
</code></p></div>
129132

130133
<p>Wenn Sie möchten, dass der Apache IPv4- und IPv6-Verbindungen an

docs/manual/bind.html.en

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@
4242

4343
<p>When Apache starts, it binds to some port and address on
4444
the local machine and waits for incoming requests. By default,
45-
it listens to all addresses on the machine. However, it needs to
46-
be told to listen on specific ports, or to listen on only selected
47-
addresses, or a combination. This is often combined with the
48-
Virtual Host feature which determines how Apache responds to
45+
it listens to all addresses on the machine. However, it may need to
46+
be told to listen on specific ports, or only on selected
47+
addresses, or a combination of both. This is often combined with the
48+
Virtual Host feature, which determines how Apache responds to
4949
different IP addresses, hostnames and ports.</p>
5050

5151
<p>The <code class="directive"><a href="./mod/mpm_common.html#listen">Listen</a></code>
5252
directive tells the server to accept
53-
incoming requests only on the specified port or
53+
incoming requests only on the specified ports or
5454
address-and-port combinations. If only a port number is
5555
specified in the <code class="directive"><a href="./mod/mpm_common.html#listen">Listen</a></code>
5656
directive, the server
@@ -62,22 +62,22 @@
6262
addresses and ports.</p>
6363

6464
<p>For example, to make the server accept connections on both
65-
port 80 and port 8000, use:</p>
65+
port 80 and port 8000, on all interfaces, use:</p>
6666

6767
<div class="example"><p><code>
6868
Listen 80<br />
6969
Listen 8000
7070
</code></p></div>
7171

72-
<p>To make the server accept connections on two specified
73-
interfaces and port numbers, use</p>
72+
<p>To make the server accept connections on port 80 for one interface,
73+
and port 8080 on another, use</p>
7474

7575
<div class="example"><p><code>
76-
Listen 192.170.2.1:80<br />
77-
Listen 192.170.2.5:8000
76+
Listen 192.0.2.1:80<br />
77+
Listen 192.0.2.5:8000
7878
</code></p></div>
7979

80-
<p>IPv6 addresses must be surrounded in square brackets, as in the
80+
<p>IPv6 addresses must be enclosed in square brackets, as in the
8181
following example:</p>
8282

8383
<div class="example"><p><code>
@@ -90,26 +90,26 @@
9090

9191
<p>A growing number of platforms implement IPv6, and
9292
<a class="glossarylink" href="./glossary.html#apr" title="see glossary">APR</a> supports IPv6 on most of these platforms,
93-
allowing Apache to allocate IPv6 sockets and handle requests which
94-
were sent over IPv6.</p>
93+
allowing Apache to allocate IPv6 sockets, and to handle requests sent
94+
over IPv6.</p>
9595

9696
<p>One complicating factor for Apache administrators is whether or
9797
not an IPv6 socket can handle both IPv4 connections and IPv6
9898
connections. Handling IPv4 connections with an IPv6 socket uses
9999
IPv4-mapped IPv6 addresses, which are allowed by default on most
100-
platforms but are disallowed by default on FreeBSD, NetBSD, and
101-
OpenBSD in order to match the system-wide policy on those
102-
platforms. But even on systems where it is disallowed by default, a
100+
platforms, but are disallowed by default on FreeBSD, NetBSD, and
101+
OpenBSD, in order to match the system-wide policy on those
102+
platforms. On systems where it is disallowed by default, a
103103
special <code class="program"><a href="./programs/configure.html">configure</a></code> parameter can change this behavior
104104
for Apache.</p>
105105

106-
<p>On the other hand, on some platforms such as Linux and Tru64 the
106+
<p>On the other hand, on some platforms, such as Linux and Tru64, the
107107
<strong>only</strong> way to handle both IPv6 and IPv4 is to use
108108
mapped addresses. If you want Apache to handle IPv4 and IPv6 connections
109109
with a minimum of sockets, which requires using IPv4-mapped IPv6
110110
addresses, specify the <code>--enable-v4-mapped</code> <code class="program"><a href="./programs/configure.html">configure</a></code> option.</p>
111111

112-
<p><code>--enable-v4-mapped</code> is the default on all platforms but
112+
<p><code>--enable-v4-mapped</code> is the default on all platforms except
113113
FreeBSD, NetBSD, and OpenBSD, so this is probably how your Apache was
114114
built.</p>
115115

@@ -120,31 +120,31 @@
120120

121121
<div class="example"><p><code>
122122
Listen 0.0.0.0:80<br />
123-
Listen 192.170.2.1:80
123+
Listen 192.0.2.1:80
124124
</code></p></div>
125125

126126
<p>If your platform supports it and you want Apache to handle IPv4 and
127-
IPv6 connections on separate sockets (i.e., to disable IPv4-mapped
127+
IPv6 connections on separate sockets (i.e., to disable IPv4-mapped
128128
addresses), specify the <code>--disable-v4-mapped</code> <code class="program"><a href="./programs/configure.html">configure</a></code> option. <code>--disable-v4-mapped</code> is the
129129
default on FreeBSD, NetBSD, and OpenBSD.</p>
130130
</div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
131131
<div class="section">
132132
<h2><a name="virtualhost" id="virtualhost">How This Works With Virtual Hosts</a></h2>
133133

134134

135-
<p> <code class="directive"><a href="./mod/mpm_common.html#listen">Listen</a></code> does not implement
136-
Virtual Hosts. It only tells the
137-
main server what addresses and ports to listen to. If no
135+
<p> The <code class="directive"><a href="./mod/mpm_common.html#listen">Listen</a></code> directive does not implement
136+
Virtual Hosts - it only tells the
137+
main server what addresses and ports to listen on. If no
138138
<code class="directive"><a href="./mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code>
139139
directives are used, the server will behave
140-
the same for all accepted requests. However,
140+
in the same way for all accepted requests. However,
141141
<code class="directive"><a href="./mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code>
142142
can be used to specify a different behavior
143-
for one or more of the addresses and ports. To implement a
143+
for one or more of the addresses or ports. To implement a
144144
VirtualHost, the server must first be told to listen to the
145145
address and port to be used. Then a
146146
<code class="directive"><a href="./mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> section
147-
should be created for a specified address and port to set the
147+
should be created for the specified address and port to set the
148148
behavior of this virtual host. Note that if the
149149
<code class="directive"><a href="./mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code>
150150
is set for an address and port that the

docs/manual/bind.html.fr

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@
7474
de deux couples d'interfaces et ports, utilisez :</p>
7575

7676
<div class="example"><p><code>
77-
Listen 192.170.2.1:80<br />
78-
Listen 192.170.2.5:8000
77+
Listen 192.0.2.1:80<br />
78+
Listen 192.0.2.5:8000
7979
</code></p></div>
8080

8181
<p>Les adresses IPv6 doivent �tre entre crochets, comme dans
@@ -124,7 +124,7 @@
124124

125125
<div class="example"><p><code>
126126
Listen 0.0.0.0:80<br />
127-
Listen 192.170.2.1:80
127+
Listen 192.0.2.1:80
128128
</code></p></div>
129129

130130
<p>Si votre plateforme le supporte et si vous souhaitez qu'Apache g�re

docs/manual/bind.html.ja.utf8

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
<a href="./ko/bind.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
2626
<a href="./tr/bind.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
2727
</div>
28+
<div class="outofdate">This translation may be out of date. Check the
29+
English version for recent changes.</div>
2830

2931
<p>Apache が使用するアドレスとポートの設定をします。</p>
3032
</div>
@@ -73,8 +75,8 @@
7375
</p>
7476

7577
<div class="example"><p><code>
76-
Listen 192.170.2.1:80<br />
77-
Listen 192.170.2.5:8000
78+
Listen 192.0.2.1:80<br />
79+
Listen 192.0.2.5:8000
7880
</code></p></div>
7981

8082
<p>とします。
@@ -123,7 +125,7 @@
123125

124126
<div class="example"><p><code>
125127
Listen 0.0.0.0:80<br />
126-
Listen 192.170.2.1:80
128+
Listen 192.0.2.1:80
127129
</code></p></div>
128130

129131
<p>条件を満たすプラットホームで、Apache が

docs/manual/bind.html.ko.euc-kr

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
하려면,</p>
7070

7171
<div class="example"><p><code>
72-
Listen 192.170.2.1:80<br />
73-
Listen 192.170.2.5:8000
72+
Listen 192.0.2.1:80<br />
73+
Listen 192.0.2.5:8000
7474
</code></p></div>
7575

7676
<p>IPv6 주소는 다음과 같이 대괄호로 묶어야 한다:</p>
@@ -112,7 +112,7 @@
112112

113113
<div class="example"><p><code>
114114
Listen 0.0.0.0:80<br />
115-
Listen 192.170.2.1:80
115+
Listen 192.0.2.1:80
116116
</code></p></div>
117117

118118
<p>플래폼에서 지원하며 아파치가 서로 다른 소켓으로 IPv4

docs/manual/bind.xml.de

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
33
<?xml-stylesheet type="text/xsl" href="./style/manual.en.xsl"?>
4-
<!-- English Revision: 421100 -->
4+
<!-- English Revision: 421100:654548 (outdated) -->
55

66
<!--
77
Licensed to the Apache Software Foundation (ASF) under one or more

docs/manual/bind.xml.ja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="iso-2022-jp" ?>
22
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
33
<?xml-stylesheet type="text/xsl" href="./style/manual.ja.xsl"?>
4-
<!-- English Revision: 421100 -->
4+
<!-- English Revision: 421100:654548 (outdated) -->
55

66
<!--
77
Licensed to the Apache Software Foundation (ASF) under one or more

docs/manual/bind.xml.ko

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="EUC-KR" ?>
22
<!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
33
<?xml-stylesheet type="text/xsl" href="./style/manual.ko.xsl"?>
4-
<!-- English Revision: 105989:421100 (outdated) -->
4+
<!-- English Revision: 105989:654548 (outdated) -->
55

66
<!--
77
Licensed to the Apache Software Foundation (ASF) under one or more

docs/manual/bind.xml.meta

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
<relpath>.</relpath>
88

99
<variants>
10-
<variant>de</variant>
10+
<variant outdated="yes">de</variant>
1111
<variant>en</variant>
1212
<variant>fr</variant>
13-
<variant>ja</variant>
13+
<variant outdated="yes">ja</variant>
1414
<variant outdated="yes">ko</variant>
1515
<variant>tr</variant>
1616
</variants>

docs/manual/dns-caveats.html.en

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@
6161
to this virtual host (prior to Apache version 1.2 the server
6262
would not even boot).</p>
6363

64-
<p>Suppose that <code>www.abc.dom</code> has address 10.0.0.1.
64+
<p>Suppose that <code>www.abc.dom</code> has address 192.0.2.1.
6565
Then consider this configuration snippet:</p>
6666

6767
<div class="example"><p><code>
68-
&lt;VirtualHost 10.0.0.1&gt; <br />
68+
&lt;VirtualHost 192.0.2.1&gt; <br />
6969
ServerAdmin webgirl@abc.dom <br />
7070
DocumentRoot /www/abc <br />
7171
&lt;/VirtualHost&gt;
@@ -84,7 +84,7 @@
8484
<p>Here is a snippet that avoids both of these problems:</p>
8585

8686
<div class="example"><p><code>
87-
&lt;VirtualHost 10.0.0.1&gt; <br />
87+
&lt;VirtualHost 192.0.2.1&gt; <br />
8888
ServerName www.abc.dom <br />
8989
ServerAdmin webgirl@abc.dom <br />
9090
DocumentRoot /www/abc <br />
@@ -120,18 +120,18 @@
120120
&lt;/VirtualHost&gt;
121121
</code></p></div>
122122

123-
<p>Suppose that you've assigned 10.0.0.1 to
124-
<code>www.abc.dom</code> and 10.0.0.2 to
123+
<p>Suppose that you've assigned 192.0.2.1 to
124+
<code>www.abc.dom</code> and 192.0.2.2 to
125125
<code>www.def.dom</code>. Furthermore, suppose that
126126
<code>def.dom</code> has control of their own DNS. With this
127127
config you have put <code>def.dom</code> into a position where
128128
they can steal all traffic destined to <code>abc.dom</code>. To
129129
do so, all they have to do is set <code>www.def.dom</code> to
130-
10.0.0.1. Since they control their own DNS you can't stop them
130+
192.0.2.1. Since they control their own DNS you can't stop them
131131
from pointing the <code>www.def.dom</code> record wherever they
132132
wish.</p>
133133

134-
<p>Requests coming in to 10.0.0.1 (including all those where
134+
<p>Requests coming in to 192.0.2.1 (including all those where
135135
users typed in URLs of the form
136136
<code>http://www.abc.dom/whatever</code>) will all be served by
137137
the <code>def.dom</code> virtual host. To better understand why

0 commit comments

Comments
 (0)