Fedora 13
Sponsored Link

httpd インストール/設定2010/05/30

  httpd をインストールして Webサーバーを構築します。PHP も一緒にインストールしておくことにします。 外からも接続できるようにするのであれば、ルーターの設定で80ポート宛てと443ポート宛ても通しておきます。

[1] httpd と PHP のインストール
[root@www ~]#
yum -y install httpd php php-mbstring php-pear

# ウェルカムページ削除

[root@www ~]#
rm -f /etc/httpd/conf.d/welcome.conf

# デフォルトエラーページ削除

[root@www ~]#
rm -f /var/www/error/noindex.html

# Perlのシンボリックリンク作成

[root@www ~]#
ln -s /usr/bin/perl /usr/local/bin/perl

[2] httpd の設定です。一般ユーザーでのWebサイトの公開と任意のディレクトリでのCGIの実行ができるように設定します。 SSIは必要性が薄いため未使用にします。サーバーの名前等は自分の環境に置き換えて設定してください。
[root@www ~]#
vi /etc/httpd/conf/httpd.conf


# 44行目:変更

ServerTokens
Prod


# 74行目:キープアライブオン

KeepAlive
On


# 248行目:管理者アドレス指定

ServerAdmin
webmaster@srv.world


# 262行目:サーバーネーム指定

ServerName
www.srv.world:80


# 317行目:変更 ( CGIを有効にし、Indexes は削除 )

Options FollowSymLinks
ExecCGI


# 324行目:変更

AllowOverride
All


# 352行目:#をつけてコメント化

#
UserDir disable

# 359行目:行頭の#を削除してコメント解除

UserDir public_html

# 367行目 - 378行目:行頭の#を削除してコメント解除

<Directory /home/*/public_html>
    AllowOverride
All
# 変更

    Options
ExecCGI
# CGI有効

    <Limit GET POST OPTIONS>
         Order allow,deny
         Allow from all
    </Limit>
    <LimitExcept GET POST OPTIONS>
         Order deny,allow
         Deny from all
    </LimitExcept>
</Directory>

# 388行目:ディレクトリ名のみでアクセスできるファイル名を追加

DirectoryIndex index.html
index.cgi index.php


# 521行目:変更

ServerSignature
Off


# 744行目:コメント化

#
AddDefaultCharset UTF-8

# 781行目:行頭の#を削除しCGIとして扱うファイルの拡張子を追加

AddHandler cgi-script .cgi
.pl


[root@www ~]#
/etc/rc.d/init.d/httpd start

Starting httpd:
[ OK ]

[root@www ~]#
chkconfig httpd on

[3] HTMLテストページを作成して動作確認をします。以下のようなページが表示されればOKです。
[root@www ~]#
vi /var/www/html/index.html


<html>
<body>
<div style="width:100%;font-size:40px;font-weight:bold;text-align:center">
Test Page
</div>
</body>
</html>
[4] CGIテストページを作成して動作確認をします。以下のようなページが表示されればOKです。
[root@www ~]#
vi /var/www/html/index.cgi


#!/usr/local/bin/perl
print "Content-type: text/html\n\n";
print <<"EOM";
<html>
<body>
<div style="width:100%;font-size:40px;font-weight:bold;text-align:center">
CGI Test Page
</div>
</body>
</html>
EOM
exit;


[root@www ~]#
chmod 705 /var/www/html/index.cgi

[5] PHPテストページを作成して動作確認をします。以下のようなページが表示されればOKです。
[root@www ~]#
vi /var/www/html/index.php


<html>
<body>
<div style="width:100%;font-size:40px;font-weight:bold;text-align:center">
<?php
print Date("Y/m/d");

?>
</div>
</body>
</html>
関連コンテンツ