Apache のデフォルトの設定では Apache のディレクトリの htdocs ディレクトリが公開ディレクトリとなっています。
ここではホームページの公開するためのディレクトリを新規に作成してそのディレクトリに html ファイルを設置、公開するための設定を行います。
公開ディレクトリの作成
ウェブページを格納するための公開ディレクトリを作成します。
# mkdir -p /virtual/honana.com/public_html
Apache の設定
Apache の設定ファイル httpd.conf を編集して公開ディレクトリに関する設定を行います。
公開ディレクトリの設定は DocumentRoot ディレクティブを使って行います。
デフォルトで設定されている DocumentRoot ディレクティブの設定を以下のように変更します。
# vi /usr/local/httpd/conf/httpd.conf
/usr/local/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 “/usr/local/httpd-2.2.4/htdocs”
DocumentRoot “/virtual/honana.com/public_html”公開するドキュメントディレクトリ
<Directory “/virtual/honana.com/public_html”>ドキュメントディレクトリに関する設定
Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# 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 “/usr/local/httpd-2.2.4/htdocs”
DocumentRoot “/virtual/honana.com/public_html”公開するドキュメントディレクトリ
<Directory “/virtual/honana.com/public_html”>ドキュメントディレクトリに関する設定
Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
公開するウェブページの作成
HTML ファイルを使って公開するウェブページを作成します。
公開ディレクトリに以下のようなテストページを作成します。
# vi /virtual/honana.com/public_html/index.html
/virtual/honana.com/public_html/index.html
<html>
<head>
<title>test</title>
</head>
<body>test</body>
</html>
<head>
<title>test</title>
</head>
<body>test</body>
</html>
Apache の再起動
Apache の設定ファイルを変更した後は Apache を再起動する必要があります。
# /usr/local/httpd/bin/apachectl graceful
ウェブブラウザを使って http://192.168.0.2/ のようにサーバーの IP アドレスを入力し作成したウェブページが表示されることを確認します。