Last Update 2006/09/14
TOP - 手順書集 - Apache2.0(win)
※ 詳しい解説よりも、全ての操作を詳細に記述する事を目標としています。手順メモとお考えください。
なお、テスト用サーバーを構築した際の手順書となりますので、セキュリティ的に完全ではない可能性があります。テスト用として使用する場合のみの利用に限定してください。
サービスとしては設定していません。
サービスとしては設定していません。
・Apache2.0のインストール
01. http://httpd.apache.org/ からダウンロード
02. apache_2.0.59-win32-x86-no_ssl.msi を実行
03. Welcome to the Installation Wizard for Apache HTTP Server 2.0.59
→ 「Next」
04. License Agreement : I accept the term in the license agreement.」を選択
→ 「Next」
05. Read This First → 「Next」
06. Server Information
Network Domain : hogehoge.com
Server Name : www.hogehoge.com
Administrator's Email Address : test@hogehoge.com
→ 「only for the Current User, on Port 8080, when started Manually.」を選択
→ 「Next」
07. Setup Type : 「Typical」を選択 → 「Next」
08. Destination Folder → 「Next」
09. Ready To Install the Program → 「Install」
10. Installation Wizard Completed → 「Finish」
11. C:\Documents and Settings\dev\スタート メニュー\プログラム\スタートアップ 内のMonitor Apache Servers を削除
12. C:\Program Files\Apache Group\Apache2\bin\Apache.exe のショートカットをデスクト
ップに作成上記のショートカットをダブルクリックするとコマンドプロンプトとともにApacheが起動
コマンドプロンプトを閉じるとApacheも停止
・Apache の設定
apache/conf/httpd.conf の修正(任意)
-- 削除 --
Listen 8080
-- 追加 --
Listen 127.0.0.1:8080
-- 変更 --
DocumentRoot "C:/webroot/public_html"
-- 変更 --
<Directory "C:/webroot/public_html">
-- 変更 --
DirectoryIndex index.html index.htm index.cgi
-- 変更 --
LanguagePriority ja .. .. .. (「ja」を先頭へ)
-- 追加 --
AddHandler cgi-script .cgi
AddHandler cgi-script .pl
-- 追加 --
NameVirtualHost 127.0.0.1:8080
-- 追加 --
<VirtualHost 127.0.0.1:8080>
DocumentRoot C:/webroot/public_html/
</VirtualHost>