www.suzu841.com | mrs.suzu841.com

neko1sa.gif  Apacheの解体、斜め読み CentOS5.3


apache section3 バーチャルホストの設定

ここではバーチャルホストの設定をします。
バーチャルホストとは、実際にはディレクトリなのに、それをwebサーバとして見せる設定のことです。
1台のwebサーバで複数のドメインを管理したいという要求があって、そのために実現した技術です。
例えば、企業内イントラネットなどで、部署ごとに違うドメインを内部で使いたいとか、他には、多くのレンタルサーバ業者なども この技術を使うことによって、安価な価格でユーザに共有サーバを提供することができています。

### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.



#
# Use name-based virtual hosting.
#
#NameVirtualHost *:80
#
# NOTE: NameVirtualHost cannot be used without a port specifier
# (e.g. :80) if mod_ssl is being used, due to the nature of the
# SSL protocol.
#

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#<VirtualHost *:80>
# ServerAdmin webmaster@dummy-host.example.com
# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>

ここはバーチャルホストの具体的な設定をするところです。