Apacheのバーチャルホストの設定について
OS:Scientific Linux6.2
Apache/2.2.15
Apacheのバーチャルホストの設定について現在勉強しております。
参考にしたサイト:http://scientificsrv.com/apache-virtualhost.shtml
私が今悩んでいるのが、DocumentRootになります。
2つのサイトを以下のディレクトリーに入れています。
ドメイン ディレクトリ
aaa.com /home/aaa/html
bbb.com /home/bbb/html
ここで、参考にしたサイトを元にしますと
/etc/httpd/conf.d/virtualhost-aaa.conf ← メインホスト用バーチャルホスト設定ファイル作成
<VirtualHost *:80>
ServerName aaa.com
DocumentRoot /home/aaa/html
</VirtualHost>
/etc/httpd/conf.d/virtualhost-bbb.conf ← 追加ホスト用バーチャルホスト設定ファイル作成
<VirtualHost *:80>
ServerName bbb.com
DocumentRoot /home/bbb/html
ErrorLog logs/virtual-error_log
CustomLog logs/virtual-access_log combined env=!no_log
</VirtualHost>
と言うようになります。
ここで、DocumentRootはそれぞれ設定していることになります。
そうするとApacheの設定ファイルのDocumentRootはどのように設定したらいいのでしょうか?
デフォルトでは以下のようになっています。
/etc/httpd/conf/httpd.conf
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/var/www/html"
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
このファイルの設定方法が分かりません。デフォルトのままでは、/var/www/htmlを使用することになっています。バーチャルホストの方で設定しているのでここの設定はしなくていいのでしょうか?
また、
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/var/www/html">
では、htaccessやCGIの許可の設定などを行いますが、バーチャルホストの場合どこで設定すればいいのでしょうか?
勉強不足なのは重々承知していますが、何卒よろしくお願い致します。
お礼
ymdaさん、回答ありがとうございます。 (遅くなってすいません) 私の質問が不十分な点がありました。今回の要件ではVHとは言っても、主な目的は別URLへのリダイレクト処理です。 Apacheのconfで<VirtualHost>のなかに Redirect / http://XXX という形で完全に別URL(別サーバ)へのリダイレクトを想定しており、リダイレクト対象も1000件程度です。 使用するサーバもそれなりのスペックを持つものを用意しようと思っています(OSはW2k3R2ですが)。感覚的にはまったく問題ないと思っているのですが、別ソースの情報として「100件程度しか無理なのでは?」という指摘があり、不安に思った次第です。