summaryrefslogtreecommitdiff
path: root/usr.sbin/httpd/htdocs/manual
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2005-07-26 13:54:09 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2005-07-26 13:54:09 +0000
commite0cb213b9aefb5d5b7434fa5c4f39d3cc4e79ece (patch)
tree9ffb5a1a081ff4d5a229281170ce0d25ca05d18d /usr.sbin/httpd/htdocs/manual
parent6099403ce77b68220de1cbc59d33e92f17917ef6 (diff)
first of a series of commits from tamas tevesz to clean up these docs:
thanks tamas! remove multiviews for bind.html;
Diffstat (limited to 'usr.sbin/httpd/htdocs/manual')
-rw-r--r--usr.sbin/httpd/htdocs/manual/bind.html (renamed from usr.sbin/httpd/htdocs/manual/bind.html.html)0
-rw-r--r--usr.sbin/httpd/htdocs/manual/bind.html.en140
-rw-r--r--usr.sbin/httpd/htdocs/manual/bind.html.fr155
-rw-r--r--usr.sbin/httpd/htdocs/manual/bind.html.ja.jis141
4 files changed, 0 insertions, 436 deletions
diff --git a/usr.sbin/httpd/htdocs/manual/bind.html.html b/usr.sbin/httpd/htdocs/manual/bind.html
index cb607b7ebc0..cb607b7ebc0 100644
--- a/usr.sbin/httpd/htdocs/manual/bind.html.html
+++ b/usr.sbin/httpd/htdocs/manual/bind.html
diff --git a/usr.sbin/httpd/htdocs/manual/bind.html.en b/usr.sbin/httpd/htdocs/manual/bind.html.en
deleted file mode 100644
index ce80ec33be8..00000000000
--- a/usr.sbin/httpd/htdocs/manual/bind.html.en
+++ /dev/null
@@ -1,140 +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">
- <div align="CENTER">
- <img src="images/sub.gif" alt="[APACHE DOCUMENTATION]" />
-
- <h3>Apache HTTP Server</h3>
- </div>
-
-
-
- <h1 align="CENTER">Setting which addresses and ports Apache
- uses</h1>
- <hr />
- 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, and to the port as
- specified by the <tt>Port</tt> directive in the server
- configuration. However, it can be told to listen to more the
- one port, 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>There are two directives used to restrict or specify which
- addresses and ports Apache listens to.</p>
-
- <ul>
- <li><a href="#bindaddress">BindAddress</a> is used to
- restrict the server to listening to a single address, and can
- be used to permit multiple Apache servers on the same machine
- listening to different IP addresses.</li>
-
- <li><a href="#listen">Listen</a> can be used to make a single
- Apache server listen to more than one address and/or
- port.</li>
- </ul>
-
- <h3><a id="bindaddress" name="bindaddress">BindAddress</a></h3>
- <a href="mod/directive-dict.html#Syntax"
- rel="Help"><strong>Syntax:</strong></a> BindAddress <em>[ * |
- IP-address | hostname ]</em><br />
- <a href="mod/directive-dict.html#Default"
- rel="Help"><strong>Default:</strong></a> <code>BindAddress
- *</code><br />
- <a href="mod/directive-dict.html#Context"
- rel="Help"><strong>Context:</strong></a> server config<br />
- <a href="mod/directive-dict.html#Status"
- rel="Help"><strong>Status:</strong></a> Core
-
- <p>Makes the server bind to just the specified address. If the
- argument is * (an asterisk), the server binds to all interfaces
- currently marked as up on the server. The port bound to is set
- with the <tt>Port</tt> directive. Only one BindAddress should
- be used.</p>
-
- <h3><a id="listen" name="listen">Listen</a></h3>
- <a href="mod/directive-dict.html#Syntax"
- rel="Help"><strong>Syntax:</strong></a> Listen <em>[ port |
- IP-address:port ]</em><br />
- <a href="mod/directive-dict.html#Default"
- rel="Help"><strong>Default:</strong></a>
- <code>none</code><br />
- <a href="mod/directive-dict.html#Context"
- rel="Help"><strong>Context:</strong></a> server config<br />
- <a href="mod/directive-dict.html#Status"
- rel="Help"><strong>Status:</strong></a> Core
-
- <p><tt>Listen</tt> can be used instead of <tt>BindAddress</tt>
- and <tt>Port</tt>. It tells the server to accept incoming
- requests (to listen) on the specified port or address-and-port
- combination. If the first format is used, with a port number
- only, the server listens on the given port on all interfaces
- marked as up, instead of the port given by the <tt>Port</tt>
- directive. If an IP address is given as well as a port, the
- server will listen on the given port and interface.</p>
-
- <p>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>
-
- <h2>How this works with Virtual Hosts</h2>
- <tt>BindAddress</tt> and <tt>Listen</tt> do not implement
- Virtual Hosts. They tell the main Apache daemon process what
- addresses and ports to bind and listen on. 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:
-
- <ul>
- <li>Be told to <tt>Listen</tt> to the desired address and
- port</li>
-
- <li>Have a &lt;VirtualHost&gt; section created for the
- specified address and port to set the behavior of this
- virtual host</li>
- </ul>
- 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.
-
- <h2>See also</h2>
- See also the documentation on <a href="vhosts/">Virtual
- Hosts</a>, <a href="mod/core.html#bindaddress">BindAddress
- directive</a>, <a href="mod/core.html#port">Port directive</a>,
- <a href="dns-caveats.html">DNS Issues</a> and <a
- href="mod/core.html#virtualhost">&lt;VirtualHost&gt;
- section</a>. <hr />
-
- <h3 align="CENTER">Apache HTTP Server</h3>
- <a href="./"><img src="images/index.gif" alt="Index" /></a>
-
- </body>
-</html>
-
diff --git a/usr.sbin/httpd/htdocs/manual/bind.html.fr b/usr.sbin/httpd/htdocs/manual/bind.html.fr
deleted file mode 100644
index 97694aaf572..00000000000
--- a/usr.sbin/httpd/htdocs/manual/bind.html.fr
+++ /dev/null
@@ -1,155 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!--Traduction anglais 1.15 -->
-
-<html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta name="generator" content="HTML Tidy, see www.w3.org" />
- <meta http-equiv="Content-Type"
- content="text/html; charset=iso-8859-1" />
-
- <title>D&eacute;finir quelles adresses et quels ports Apache
- utilise</title>
- </head>
- <!-- Background white, links blue (unvisited), navy (visited), red (active) -->
-
- <body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
- vlink="#000080" alink="#FF0000">
- <div align="CENTER">
- <img src="images/sub.gif" alt="[APACHE DOCUMENTATION]" />
-
- <h3>Apache HTTP Server</h3>
- </div>
-
-
-
- <h1 align="CENTER">D&eacute;finir quelles adresses et quels
- ports Apache utilise</h1>
- <hr />
- Quand Apache d&eacute;marre, il se connecte &agrave; des ports
- et adresses donn&eacute;s de la machine et attend les
- requ&ecirc;tes. Par d&eacute;faut il &eacute;coute sur toutes
- les adresses de la machines, et sur le port d&eacute;fini par
- la directive <tt>Port</tt> du fichier de configuration.
- Cependant, on peut lui indiquer d'&eacute;couter sur d'autres
- ports, ou d'&eacute;couter &agrave; partir de certaines
- adresses seulement, ou une combinaison de ces
- param&egrave;tres. Ceci est g&eacute;n&eacute;ralement
- combin&eacute; avec la fonction d'h&ocirc;te virtuel qui
- d&eacute;finit comment r&eacute;pond aux diff&eacute;rentes
- adresses IP, nom d'h&ocirc;te et de ports.
-
- <p>Il existe deux directives pour resteindre ou
- sp&eacute;cifier sur quels adresses et ports Apache doit
- &eacute;couter.</p>
-
- <ul>
- <li><a href="#bindaddress">BindAddress</a> est employ&eacute;
- pour resteindre le serveur &agrave; n'&eacute;couter qu'une
- seule adresse, et peut permettre plusieurs serveurs Apache
- sur la m&ecirc;me machine d'&eacute;couter diff&eacute;rentes
- adresses IP.</li>
-
- <li><a href="#listen">Listen</a> peut &ecirc;tre
- employ&eacute; pour permettre &agrave; un serveur Apache
- d'&eacute;couter plusieurs adresses et ports.</li>
- </ul>
-
- <h3><a id="bindaddress" name="bindaddress">BindAddress</a></h3>
- <a href="mod/directive-dict.html#Syntax"
- rel="Help"><strong>Syntaxe :</strong></a> BindAddress <em>[ * |
- IP-address | hostname ]</em><br />
- <a href="mod/directive-dict.html#Default"
- rel="Help"><strong>D&eacute;faut :</strong></a>
- <code>BindAddress *</code><br />
- <a href="mod/directive-dict.html#Context"
- rel="Help"><strong>Contexte :</strong></a> configuration du
- serveur<br />
- <a href="mod/directive-dict.html#Status"
- rel="Help"><strong>Statut :</strong></a> base
-
- <p>Cette directive force le serveur &agrave; n'&eacute;couter
- que d'une adresse sp&eacute;cifique. Si l'argument est *, le
- serveur &eacute;coute sur toutes les adresses. Le port
- d'&eacute;coute est d&eacute;fini par la directive
- <tt>Port</tt> directive. Il ne doit y avoir qu'au plus une
- seule directive <tt>BindAddress</tt>.</p>
-
- <h3><a id="listen" name="listen">Listen</a></h3>
- <a href="mod/directive-dict.html#Syntax"
- rel="Help"><strong>Syntaxe :</strong></a> Listen <em>[ port |
- IP-address:port ]</em><br />
- <a href="mod/directive-dict.html#Default"
- rel="Help"><strong>D&eacute;faut :</strong></a>
- <code>aucun</code><br />
- <a href="mod/directive-dict.html#Context"
- rel="Help"><strong>Contexte :</strong></a> configuration du
- serveur<br />
- <a href="mod/directive-dict.html#Status"
- rel="Help"><strong>Statut :</strong></a> base
-
- <p><tt>Listen</tt> peut &ecirc;tre utilis&eacute; &agrave; la
- place de <tt>BindAddress</tt> et <tt>Port</tt>. Il indique au
- serveur d'accepter des requ&ecirc;tes venant d'un port
- sp&eacute;cifique ou d'une combinaison d'adresse et de port. Si
- le premier format est employ&eacute;, avec uniquement un
- num&eacute;ro de port, le serveur &eacute;coute sur ce port,
- &agrave; la place du port sp&eacute;cifi&eacute; dans la
- directive <tt>Port</tt>, sur l'ensemble des interfaces
- r&eacute;seau. Si une adresse est donn&eacute;e en plus du
- port, le serveur n'&eacute;coutera que sur le port de
- l'interface sp&eacute;cifi&eacute;e.</p>
-
- <p>Plusieurs directives <tt>Listen</tt> peuvent &ecirc;tre
- utilis&eacute;es pour sp&eacute;cifier un ensemble d'adresses
- et de ports d'&eacute;coute. Le serveur r&eacute;pondra aux
- requ&ecirc;tes provenant de n'importe quels de ces adresses et
- ports.</p>
-
- <p>Par exemple pour autoriser les requ&ecirc;tes sur les ports
- 80 et 8000, il suffit d'&eacute;crire :</p>
-<pre>
- Listen 80
- Listen 8000
-</pre>
- Pour que le serveur acccepte des requ&ecirc;tes provenant de
- deux adresses et ports sp&eacute;cifiques, &eacute;crivez :
-<pre>
- Listen 192.170.2.1:80
- Listen 192.170.2.5:8000
-</pre>
-
- <h2>Comment cela fonctionne avec les h&ocirc;tes virtuels</h2>
- <tt>BindAddress</tt> et <tt>Listen</tt> n'impl&eacute;mentent
- pas les h&ocirc;tes virtuels. Ils indiquent au serveur
- principal sur quelles adresses et ports &eacute;couter. Si
- aucune directive <tt>&lt;VirtualHost&gt;</tt> n'est
- employ&eacute;e, le serveur se comportera de la m&ecirc;me
- mani&egrave;re pour toutes les requ&ecirc;tes.
- <tt>&lt;VirtualHost&gt;</tt> peut &ecirc;tre employ&eacute;
- pour d&eacute;finir un comportement diff&eacute;rent pour un ou
- plusieurs de ces ports et adresses. Pour impl&eacute;menter un
- h&ocirc;te virtuel, le serveur doit conna&icirc;tre quels ports
- et quelles adresses employer. Une section
- <tt>&lt;VirtualHost&gt;</tt> doit &ecirc;tre
- cr&eacute;&eacute;e pour une adresse et un port
- sp&eacute;cifique afin de d&eacute;finir le comportement de cet
- h&ocirc;te virtuel. Il faut noter que si un h&ocirc;te virtuel
- est configur&eacute; pour une adresse ou un port sur lequel le
- serveur n'&eacute;coute pas, il est inaccessible.
-
- <h2>Voir &eacute;galement</h2>
- Voir &eacute;galement la documentation sur les <a
- href="vhosts/">h&ocirc;tes virtuels</a>, la <a
- href="mod/core.html#bindaddress">directive BindAddress</a>, la
- <a href="mod/core.html#port">directive Port</a>, les <a
- href="dns-caveats.html">questions sur le DNS</a> et la <a
- href="mod/core.html#virtualhost">section
- &lt;VirtualHost&gt;</a>. <hr />
-
- <h3 align="CENTER">Apache HTTP Server</h3>
- <a href="./"><img src="images/index.gif" alt="Index" /></a>
-
- </body>
-</html>
-
diff --git a/usr.sbin/httpd/htdocs/manual/bind.html.ja.jis b/usr.sbin/httpd/htdocs/manual/bind.html.ja.jis
deleted file mode 100644
index b012c00c7c0..00000000000
--- a/usr.sbin/httpd/htdocs/manual/bind.html.ja.jis
+++ /dev/null
@@ -1,141 +0,0 @@
-<?xml version="1.0" encoding="iso-2022-jp"?>
-<!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" xml:lang="ja" lang="ja">
- <head>
-
- <title>Apache $B$,;HMQ$9$k%"%I%l%9$H%]!<%H$N@_Dj(B</title>
-
- </head>
- <!-- English revision: 1.17 -->
- <!-- Background white, links blue (unvisited), navy (visited), red (active) -->
- <body bgcolor="#ffffff" text="#000000" link="#0000ff"
- vlink="#000080" alink="#ff0000">
- <div align="CENTER">
- <img src="images/sub.gif" alt="[APACHE DOCUMENTATION]" />
-
- <h3>Apache HTTP Server</h3>
- </div>
-
-
-
- <h1 align="center">Apache $B$,;HMQ$9$k%"%I%l%9$H%]!<%H$N@_Dj(B</h1>
-
- <hr />
- Apache $B$O5/F0;~$K!"%m!<%+%k$J%^%7%s$N$"$k%]!<%H$*$h$S%"%I%l%9(B
- $B$KBP$7$F@\B3$7!"%j%/%(%9%H$,Mh$k$N$rBT$A$^$9!#(B
- $B%G%U%)%k%H$G$O!"%^%7%s>e$N$9$Y$F$N%"%I%l%9!"$*$h$S%5!<%P@_Dj%U%!%$%k$N(B
- <tt>Port</tt> $B%G%#%l%/%F%#%V$G@_Dj$5$l$?%]!<%H$KBP$7$F(B listen $B$7$^$9!#(B
- $B$7$+$7!"J#?t$N%]!<%H$r(B listen $B$9$k!";XDj$5$l$?%"%I%l%9$K8B$C$F(B
- listen $B$9$k!"$"$k$$$O$=$l$i$rAH$_9g$o$;$F@_Dj$9$k$3$H$b2DG=$G$9!#(B
- $B$3$l$O!"0[$J$k(B IP $B%"%I%l%9!"%[%9%HL>!"%]!<%H$KBP$9$k(B Apache
- $B$N1~EzJ}K!$r7hDj$9$k%P!<%A%c%k%[%9%H5!G=$HAH$_9g$o$;$F;H$o$l$^$9!#(B
-
- <p>Apache $B$,(B listen $B$9$k%"%I%l%9$*$h$S%]!<%H$r8BDj$9$k$?$a$K;H$o$l$k(B
- $B%G%#%l%/%F%#%V$,Fs$D$"$j$^$9!#(B</p>
-
- <ul>
- <li><a href="#bindaddress">BindAddress</a>
- $B$O!"%5!<%P$,C10l$N%"%I%l%9$r(B listen $B$9$k$h$&$K8BDj$7$^$9!#(B
- $B0[$J$k(B IP $B%"%I%l%9$r(B listen $B$5$;$?J#?t$N(B Apache
- $B$rF10l%^%7%s>e$GF0:n$5$;$k$3$H$,$G$-$k$h$&$K$9$k$?$a$K;HMQ$G$-$^$9!#(B</li>
-
- <li><a href="#listen">Listen</a> $B$OC10l$N(B Apache
- $B%5!<%P$,J#?t$N%"%I%l%9(B/$B%]!<%H$r(B listen $B$9$k$?$a$K;H$o$l$^$9!#(B
- </li>
- </ul>
-
- <h3><a id="bindaddress" name="bindaddress">BindAddress</a></h3>
- <a href="mod/directive-dict.html#Syntax"
- rel="Help"><strong>$B9=J8(B:</strong></a> BindAddress <em>[ * |
- IP $B%"%I%l%9(B | $B%[%9%HL>(B ]</em><br />
- <a href="mod/directive-dict.html#Default"
- rel="Help"><strong>$B%G%U%)%k%H(B:</strong></a><code>BindAddress
- *</code><br />
- <a href="mod/directive-dict.html#Context"
- rel="Help"><strong>$B%3%s%F%-%9%H(B:</strong></a>$B%5!<%P@_Dj%U%!%$%k(B<br />
- <a href="mod/directive-dict.html#Status"
- rel="Help"><strong>$B%9%F!<%?%9(B:</strong></a>$B%3%"(B
-
- <p>$B%5!<%P$r!"FCDj$N%"%I%l%9$@$1$K%P%$%s%I$7$^$9!#(B
- $B0z?t$,(B * ($B%"%9%?%j%9%/(B) $B$N>l9g$O!"8=:_%5!<%P>e$GM-8z$J$9$Y$F$N(B
- $B%$%s%?%U%'!<%9$K%P%$%s%I$7$^$9!#%]!<%H$O(B <tt>Port</tt>
- $B%G%#%l%/%F%#%V$G$N@_Dj$,;H$o$l$^$9!#(BBindAddress $B$O0l$D$@$1;H$($^$9!#(B
- </p>
-
- <h3><a id="listen" name="listen">Listen</a></h3>
- <a href="mod/directive-dict.html#Syntax"
- rel="Help"><strong>$B9=J8(B:</strong></a>Listen <em>[$B%]!<%H(B |
- IP $B%"%I%l%9(B:$B%]!<%H(B ]</em><br />
- <a href="mod/directive-dict.html#Default"
- rel="Help"><strong>$B%G%U%)%k%H(B:</strong></a>
- <code>none</code><br />
- <a href="mod/directive-dict.html#Context"
- rel="Help"><strong>$B%3%s%F%-%9%H(B:</strong></a>$B%5!<%P@_Dj%U%!%$%k(B<br />
- <a href="mod/directive-dict.html#Status"
- rel="Help"><strong>$B%9%F!<%?%9(B:</strong></a>$B%3%"(B
-
- <p><tt>Listen</tt> $B%G%#%l%/%F%#%V$O(B <tt>BindAddress</tt> $B$*$h$S(B
- <tt>Port</tt> $B%G%#%l%/%F%#%V$NBe$o$j$H$7$F;H$&$3$H$b$G$-$^$9!#(B
- $B$3$l$K$h$jFCDj$N%]!<%H$^$?$O%"%I%l%9$H%]!<%H$NAH9g$o$;$KBP$7$F$N(B
- $B%j%/%(%9%H$r%5!<%P$,<u$1IU$1$k(B (listen $B$9$k(B) $B$h$&$K$7$^$9!#(B
- $B%]!<%HHV9f$@$1$N!":G=i$N=q<0$r;H$C$?>l9g!"(B<tt>Port</tt>
- $B%G%#%l%/%F%#%V$G@_Dj$5$l$?%]!<%H$G$O$J$/%5!<%P>e$GM-8z$J$9$Y$F$N(B
- $B%$%s%?%U%'!<%9$KBP$7$F!"$3$3$G@_Dj$5$l$?%]!<%H$r(B listen $B$7$^$9!#(B
- $B%]!<%H$H6&$K(B IP $B%"%I%l%9$r;XDj$7$?>l9g$O!";XDj$5$l$?%]!<%H$H(B
- $B%$%s%?%U%'!<%9$KBP$7$F(B listen $B$7$^$9!#(B</p>
-
- <p>$BJ#?t$N(B Listen $B%G%#%l%/%F%#%V$K$h$j!"(Blisten $B$9$k%"%I%l%9$H%]!<%H$r(B
- $B$$$/$D$b;XDj$9$k$3$H$b=PMh$^$9!#(B
- $B%j%9%H$5$l$?%"%I%l%9$H%]!<%H$9$Y$F$KBP$7$F1~Ez$7$^$9!#(B</p>
-
- <p>$B$?$H$($P!"%]!<%H(B 80 $B$H(B 8000 $B$NN>J}$KBP$7$F$N@\B3$r<u$1IU$1$k$K$O(B</p>
-<pre>
- Listen 80
- Listen 8000
-</pre>
- $B$H$7$^$9!#(B
- $BFs$D$N;XDj$5$l$?%$%s%?%U%'!<%9$H%]!<%HHV9f$KBP$7$F$N@\B3$r<u$1IU$1$k$K$O(B
-<pre>
- Listen 192.170.2.1:80
- Listen 192.170.2.5:8000
-</pre>
- $B$H$7$^$9!#(B
-
- <h2>$B%P!<%A%c%k%[%9%H$KBP$7$F$I$&F/$/$N$+(B</h2>
-
- <tt>BindAddress</tt> $B$H(B <tt>Listen</tt> $B$O%P!<%A%c%k%[%9%H$r9T$J$&(B
- $B$o$1$G$O$"$j$^$;$s!#$=$l$i$O%a%$%s$N(B Apache $B%G!<%b%s%W%m%;%9$,$I$N%"%I%l%9(B
- $B$r%P%$%s%I$7!"$I$N%]!<%H$r(B listen $B$9$k$N$+$H$$$&$3$H$r;XDj$7$^$9!#(B
- &lt;VirtualHost&gt;
- $B%G%#%l%/%F%#%V$,A4$/;H$o$l$J$$>l9g$O!"<u$1IU$1$?%j%/%(%9%H$9$Y$F$KBP$7$F(B
- $BF1$8F0:n$r$7$^$9!#$7$+$7!"(B&lt;VirtualHost&gt; $B$r;H$C$F0l$D$"$k$$$OJ#?t$N(B
- $B%"%I%l%9$*$h$S%]!<%H$KBP$7$F0[$J$kF0:n$r$5$;$k$3$H$b=PMh$^$9!#(B
- $B%P!<%A%c%k%[%9%H$r9T$J$&$K$O!"%5!<%P$K$O<!$N$3$H$,I,MW$G$9!#(B
-
- <ul>
- <li>$BL\E*$N%"%I%l%9$H%]!<%H$r(B <tt>Listen</tt> $B$9$k$h$&$K;X<($5$l$F$$$k(B</li>
-
- <li>$B;XDj$5$l$?%]!<%H$H%"%I%l%9$KBP$7$F!"(B
- $B%P!<%A%c%k%[%9%H$N?6$kIq$$$r@_Dj$9$k$?$a$K(B
- &lt;VirtualHost&gt; $B%;%/%7%g%s$,:n$i$l$F$$$k(B</li>
- </ul>
-
- $B%5!<%P$G(B listen $B$7$F$$$J$$%"%I%l%9$*$h$S%]!<%H$r(B &lt;VirtualHost&gt;
- $B$G;XDj$7$?>l9g!"%"%/%;%9$G$-$J$$$3$H$KCm0U$7$F$/$@$5$$!#(B
-
- <h2>$B4XO"9`L\(B</h2>
- <a href="vhosts/">$B%P!<%A%c%k%[%9%H(B</a>$B!"(B<a
- href="mod/core.html#bindaddress">BindAddress
- $B%G%#%l%/%F%#%V(B</a>$B!"(B<a href="mod/core.html#port">Port
- $B%G%#%l%/%F%#%V(B</a>$B!"(B<a href="dns-caveats.html">DNS
- $B$NLdBj(B</a>$B!"$*$h$S(B<a href="mod/core.html#virtualhost">&lt;VirtualHost&gt;
- $B%;%/%7%g%s(B</a>$B$NJ8=q$b;2>H$7$F$/$@$5$$!#(B
- <hr />
-
- <h3 align="CENTER">Apache HTTP Server</h3>
- <a href="./"><img src="images/index.gif" alt="Index" /></a>
-
- </body>
-</html>
-