Fedora 16
Sponsored Link

httpd インストール/設定2011/11/12

 
httpd をインストールしてWebサーバーを構築します。 外部からも接続できるようにするのであれば、ルーターの設定で80番ポート宛てと443ポート宛ても通しておいてください。
[1] httpd インストール
[root@www ~]#
yum -y install httpd
# ウェルカムページ削除

[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 の設定です。任意のディレクトリでCGIが使えるように設定します。 サーバーの名前等は自分の環境に置き換えて設定してください。
[root@www ~]#
vi /etc/httpd/conf/httpd.conf
# 43行目:変更

ServerTokens
Prod
# 75行目:キープアライブオン

KeepAlive
On
# 261行目:管理者アドレス指定

ServerAdmin
root@srv.world
# 275行目:コメント解除しサーバー名指定

ServerName
www.srv.world:80
# 330行目:変更 ( CGIを有効にし、Indexes は削除 )

Options FollowSymLinks
ExecCGI
# 337行目:変更

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

DirectoryIndex index.html
index.cgi index.php
# 535行目:変更

ServerSignature
Off
# 758行目:コメント化

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

AddHandler cgi-script .cgi
.pl
[root@www ~]#
systemctl start httpd.service

[root@www ~]#
systemctl enable httpd.service

[3] HTMLテストページを作成して動作確認をします。作成したテストページにWebブラウザでアクセスして、以下のようなページが表示されれば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テストページを作成して動作確認をします。作成したテストページにWebブラウザでアクセスして、以下のようなページが表示されればOKです。
[root@www ~]#
vi /var/www/html/index.cgi
#!/usr/local/bin/perl

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

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

関連コンテンツ