]> granicus.if.org Git - apache/commitdiff
New Japanese translation.
authorYoshiki Hayashi <yoshiki@apache.org>
Thu, 30 May 2002 07:17:37 +0000 (07:17 +0000)
committerYoshiki Hayashi <yoshiki@apache.org>
Thu, 30 May 2002 07:17:37 +0000 (07:17 +0000)
Submitted by: Hiroaki KAWAI <hawk@bcl.t.u-tokyo.ac.jp>
Reviewed by: Yoshiki Hayashi

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95391 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/bind.html [deleted file]
docs/manual/bind.html.ja.jis [new file with mode: 0644]

diff --git a/docs/manual/bind.html b/docs/manual/bind.html
deleted file mode 100644 (file)
index a52d8ee..0000000
+++ /dev/null
@@ -1,111 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml">
-  <head>
-    <meta name="generator" content="HTML Tidy, see www.w3.org" />
-
-    <title>Setting which addresses and ports Apache uses</title>
-  </head>
-  <!-- Background white, links blue (unvisited), navy (visited), red (active) -->
-
-  <body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
-  vlink="#000080" alink="#FF0000">
-    <!--#include virtual="header.html" -->
-
-    <h1 align="CENTER">Setting which addresses and ports Apache
-    uses</h1>
-
-    <p>When Apache starts, it connects to some port and address on
-    the local machine and waits for incoming requests. By default,
-    it listens to all addresses on the machine.  However, it needs to
-    be told to listen to specific ports, or to listen to only selected 
-    addresses, or a combination. This is often combined with the 
-    Virtual Host feature which determines how Apache responds to 
-    different IP addresses, hostnames and ports.</p>
-
-    <p>The <code>Listen</code> directive tells the server to accept
-    incoming requests only on the specified port or
-    address-and-port combinations. If only a port number is
-    specified in the <code>Listen</code> directive, the server
-    listens to the given port on all interfaces. If an IP address
-    is given as well as a port, the server will listen on the given
-    port and interface. Multiple Listen directives may be used to
-    specify a number of addresses and ports to listen to. The
-    server will respond to requests from any of the listed
-    addresses and ports.</p>
-
-    <p>For example, to make the server accept connections on both
-    port 80 and port 8000, use:</p>
-<pre>
-   Listen 80
-   Listen 8000
-</pre>
-    To make the server accept connections on two specified
-    interfaces and port numbers, use 
-<pre>
-   Listen 192.170.2.1:80
-   Listen 192.170.2.5:8000
-</pre>
-    IPv6 addresses must be surrounded in square brackets, as in the
-    following example:
-<pre>
-   Listen [fe80::a00:20ff:fea7:ccea]:80
-</pre>
-
-    <h2>Special IPv6 considerations</h2>
-
-    When APR supports IPv6, Apache will create IPv6-capable listening
-    sockets by default (i.e., when no IP address is specified on the
-    Listen directive).  In other words, when APR supports IPv6,
-<pre>
-   Listen 80
-</pre>
-    is equivalent to 
-<pre>
-   Listen [::]:80
-</pre>
-    When APR does not support IPv6,
-<pre>
-   Listen 80
-</pre>
-    is equivalent to
-<pre>
-   Listen 0.0.0.0:80
-</pre>
-    On some platforms, such as NetBSD, binding to the IPv6 wildcard address 
-    ("::") does not allow Apache to accept connections on IPv4 interfaces.
-    In this situation, multiple Listen directives are required, as shown
-    below:
-<pre>
-   Listen 0.0.0.0:80
-   Listen [::]:80
-</pre>
-    Apache does not currently detect this, so the Listen statements must
-    be edited manually by the administrator.
-
-    <h2>How this works with Virtual Hosts</h2>
-
-    <p>Listen does not implement Virtual Hosts. It only tells the
-    main server what addresses and ports to listen to. If no
-    &lt;VirtualHost&gt; directives are used, the server will behave
-    the same for all accepted requests. However,
-    &lt;VirtualHost&gt; can be used to specify a different behavior
-    for one or more of the addresses and ports. To implement a
-    VirtualHost, the server must first be told to listen to the
-    address and port to be used. Then a &lt;VirtualHost&gt; section
-    should be created for a specified address and port to set the
-    behavior of this virtual host. Note that if the
-    &lt;VirtualHost&gt; is set for an address and port that the
-    server is not listening to, it cannot be accessed.</p>
-
-    <h2>See also</h2>
-    See also the documentation on <a
-    href="mod/mpm_common.html#listen">Listen directive</a>, <a
-    href="vhosts/">Virtual Hosts</a>, <a
-    href="dns-caveats.html">DNS Issues</a> and <a
-    href="mod/core.html#virtualhost">&lt;VirtualHost&gt;
-    section</a>. <!--#include virtual="footer.html" -->
-  </body>
-</html>
-
diff --git a/docs/manual/bind.html.ja.jis b/docs/manual/bind.html.ja.jis
new file mode 100644 (file)
index 0000000..835281a
--- /dev/null
@@ -0,0 +1,118 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+
+    <title>Apache \e$B$,;HMQ$9$k%"%I%l%9$H%]!<%H$N@_Dj\e(B</title>
+  </head>
+  <!-- English revision: 1.19 -->
+  <!-- Background white, links blue (unvisited), navy (visited), red (active) -->
+
+  <body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
+  vlink="#000080" alink="#FF0000">
+    <!--#include virtual="header.html" -->
+
+    <h1 align="center">Apache \e$B$,;HMQ$9$k%"%I%l%9$H%]!<%H$N@_Dj\e(B</h1>
+
+    <p>Apache \e$B$O5/F0;~$K!"%m!<%+%k%^%7%s$N$"$k%]!<%H$"$h$S%"%I%l%9\e(B
+    \e$B$KBP$7$F@\B3$7!"%j%/%(%9%H$,Mh$k$N$rBT$A$^$9!#\e(B
+    \e$B%G%U%)%k%H$G$O%^%7%s$NA4$F$N%"%I%l%9$KBP$7$F\e(B listen \e$B$7$^$9!#\e(B
+    \e$B$7$+$7$J$,$i!"FCDj$N%]!<%H$+!"FCDj$N%"%I%l%9$N$_$+!"\e(B
+    \e$B$^$?$O$=$l$i$NAH$_9g$o$;$N$$$:$l$+$r\e(B listen \e$B$9$k$h$&$K$9$kI,MW$,$"$j$^$9!#\e(B
+    \e$B$3$l$O!"0[$J$k\e(B IP \e$B%"%I%l%9!"%[%9%HL>!"%]!<%H$KBP$9$k\e(B Apache
+    \e$B$N1~EzJ}K!$r7hDj$9$k%P!<%A%c%k%[%9%H5!G=$HAH$_9g$o$;$F;H$o$l$^$9!#\e(B</p>
+
+    <p><code>Listen</code> \e$B%G%#%l%/%F%#%V$OFCDj$N%]!<%H$d\e(B
+    \e$B%"%I%l%9!&%]!<%H$NAH$+$i$N$_F~$C$F$/$k%j%/%(%9%H$r\e(B
+    \e$B<u$1IU$1$k$h$&$K$G$-$^$9!#\e(B
+    \e$B$b$7%]!<%HHV9f$N$_$,\e(B <code>Listen</code> \e$B%G%#%l%/%F%#%V$G\e(B
+    \e$B;XDj$5$l$?>l9g$O!"A4$F$N%$%s%?!<%U%'!<%9$NM?$($i$l$?%]!<%HHV9f$r\e(B
+    listen \e$B$7$^$9!#\e(B IP \e$B%"%I%l%9$,%]!<%HHV9f$HF1;~$KM?$($i$l$?>l9g$O!"\e(B
+    \e$B%5!<%P$OM?$($i$l$?%]!<%H$H%$%s%?!<%U%'!<%9$r\e(B listen \e$B$7$^$9!#\e(B
+    \e$BJ#?t$N\e(B Listen \e$B%G%#%l%/%F%#%V$rMQ$$$F\e(B
+    \e$B$$$/$D$+$N\e(B listen \e$B$9$k%"%I%l%9$H%]!<%H$r;XDj$G$-$^$9!#\e(B
+    \e$B%5!<%P$O%j%9$H$5$l$?%"%I%l%9$d%]!<%H$+$i$NA4$F$N%j%/%(%9%H$K\e(B
+    \e$BBP$7$F1~Ez$7$^$9!#\e(B</p>
+
+    <p>\e$BNc$($P!"%]!<%H\e(B 80 \e$B$H\e(B 8000 \e$B$NN>J}$KBP$7$F$N@\B3$r<u$1IU$1$k$K$O\e(B</p>
+<pre>
+   Listen 80
+   Listen 8000
+</pre>
+    \e$B$H$7$^$9!#\e(B
+    2 \e$B$D$N;XDj$5$l$?%$%s%?%U%'!<%9$H%]!<%HHV9f$KBP$7$F$N@\B3$r<u$1IU$1$k$K$O\e(B
+<pre>
+   Listen 192.170.2.1:80
+   Listen 192.170.2.5:8000
+</pre>
+    \e$B$H$7$^$9!#\e(B
+    IPv6 \e$B%"%I%l%9$O!"3Q3g8L$G<!$NNc$N$h$&$K0O$^$J$1$l$P$$$1$^$;$s!#\e(B
+<pre>
+   Listen [fe80::a00:20ff:fea7:ccea]:80
+</pre>
+
+    <h2>IPv6 \e$B$NFC5-;v9`\e(B</h2>
+
+    APR \e$B$,\e(B IPv6 \e$B$r%5%]!<%H$9$k>l9g$O!"\e(BApache \e$B$O%G%U%)%k%H$G\e(B IPv6
+    \e$B$r\e(B listen \e$B$9$k%=%1%C%H$r:n$j$^$9\e(B (\e$BNc$($P\e(B Listen \e$B%G%#%l%/%F%#%V$G\e(B
+    IP \e$B%"%I%l%9$,L5;XDj$N>l9g\e(B)\e$B!#\e(B
+    \e$B$D$^$j!"\e(BAPR \e$B$,\e(B IPv6 \e$B$r%5%]!<%H$9$k>l9g!"\e(B
+<pre>
+   Listen 80
+</pre>
+    \e$B$O\e(B
+<pre>
+   Listen [::]:80
+</pre>
+    \e$B$HF1Ey$G$9!#\e(BAPR \e$B$,\e(B IPv6 \e$B$r%5%]!<%H$7$J$$>l9g$O!"\e(B
+<pre>
+   Listen 80
+</pre>
+    \e$B$O\e(B
+<pre>
+   Listen 0.0.0.0:80
+</pre>
+    \e$B$HF1Ey$G$9!#\e(B
+    NetBSD \e$BEy$N$$$/$D$+$N%W%i%C%H%[!<%`$G$O!"\e(BIPv6
+    \e$B$N%o%$%k%I%+!<%I%"%I%l%9\e(B (\e$B!V\e(B::\e$B!W\e(B) \e$B$N%P%$%s%I$G$O\e(B IPv4
+    \e$B%$%s%?!<%U%'!<%9$K%3%M%/%7%g%s$rD%$l$^$;$s!#\e(B
+    \e$B$3$N$h$&$J>u67$G$O!"<!$N$h$&$KJ#?t$N\e(B Listen \e$B%G%#%l%/%F%#%V$,I,MW$K$J$j$^$9!#\e(B
+<pre>
+   Listen 0.0.0.0:80
+   Listen [::]:80
+</pre>
+    Apache \e$B$O8=:_$3$l$r<+F08!=P$9$k$3$H$,$G$-$J$$$N$G!"\e(B
+    \e$B$=$N$h$&$J>l9g$O\e(B
+    Listen \e$BL?NaJ8$O4IM}<T$,<jF0$GJT=8$7$J$$$H$$$1$^$;$s!#\e(B
+
+    <h2>\e$B%P!<%A%c%k%[%9%H$KBP$7$F$I$&F/$/$N$+\e(B</h2>
+
+    <p>Listen \e$B$G%P!<%A%c%k%[%9%H$,<BAu$5$l$k$o$1$G$O$"$j$^$;$s!#\e(B
+    Listen \e$B$OC1$K%a%$%s%5!<%P$K$I$N%"%I%l%9$H%]!<%H$r\e(B listen \e$B$9$Y$-$+$r\e(B
+    \e$B65$($k$@$1$G$9!#\e(B
+    &lt;VirtualHost&gt; \e$B%G%#%l%/%F%#%V$,;H$o$l$J$$>l9g$O!"\e(B
+    \e$B<u$1F~$l$?%j%/%(%9%HA4$F$KBP$7$FA4$/F1$85sF0$r$7$^$9!#\e(B
+    \e$B$7$+$7$J$,$i\e(B &lt;VirtualHost&gt; \e$B;H$C$F!"\e(B
+    \e$B0l$D0J>e$N%"%I%l%9$d%]!<%H$KBP$7$F0[$J$k5sF0$r$9$k$h$&$K\e(B
+    \e$B;XDj$9$k$3$H$,$G$-$^$9!#\e(B
+    VirtualHost \e$B<BAu$9$k$K$O!";HMQ$9$k%"%I%l%9$H%]!<%H$r\e(B
+    \e$B$^$:;O$a$K%5!<%P$KDLCN$7$J$1$l$P$J$j$^$;$s!#\e(B
+    \e$B$=$7$F!"$=$N;XDj$7$?%"%I%l%9$H%]!<%H$G$N\e(B
+    \e$B$3$N%P!<%A%c%k%[%9%H$N5sF0$r@_Dj$9$k$?$a$K!"\e(B
+    &lt;VirtualHost&gt; \e$B%;%/%7%g%s$r:n$j$^$9!#\e(B
+    \e$B$b$7\e(B &lt;VirtualHost&gt; \e$B$,\e(B listen \e$B$7$F$$$J$$%"%I%l%9$H%]!<%H$KBP$7$F\e(B
+    \e$B@_Dj$5$l$F$7$^$&$H!"\e(B
+    \e$B%"%/%;%9$9$k$3$H$,$G$-$J$$$H$$$&$3$H$KCm0U$7$F$/$@$5$$!#\e(B</p>
+
+    <h2>\e$B4XO"9`L\\e(B</h2>
+    <a
+    href="mod/mpm_common.html#listen">Listen \e$B%G%#%l%/%F%#%V\e(B</a>\e$B!"\e(B<a
+    href="vhosts/">\e$B%P!<%A%c%k%[%9%H\e(B</a>\e$B!"\e(B<a
+    href="dns-caveats.html">DNS \e$B$NLdBj\e(B</a> \e$B$H\e(B <a
+    href="mod/core.html#virtualhost">&lt;VirtualHost&gt;
+    \e$B%;%/%7%g%s\e(B</a>\e$B$NJ8=q$b$4Mw2<$5$$!#\e(B
+    <!--#include virtual="footer.html" -->
+  </body>
+</html>
+