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の許可の設定などを行いますが、バーチャルホストの場合どこで設定すればいいのでしょうか?
勉強不足なのは重々承知していますが、何卒よろしくお願い致します。
お礼
追記させてください。 httpd.confの中に 949行目付近 #NameVirtualHost *:80 こんな状態になっているかと思います。 この「#」を外します。 の#NameVirtualHost *:80 がありません。どこに書き足せば良いのでしょうか? たびたびすみません。
補足
VirtualHost 192.168.1.2:80 となっていますが、これでは 複数のサイトを作る時、 アドレスが一つしかないのですが、 プラウザにアドレス入力するには www1@yunayuna.net www2@yunayuna.net と入力すれば良い、という事でしょうか?