Fedora 14
Sponsored Link

ユーザーのホームディレクトリ領域を使えるようにする2010/11/06

  一般ユーザーが自身のホームディレクトリ内に置いたファイルをWebサイトとして公開できるようにします。

[1] 任意のディレクトリでCGIが実行可能なように設定します。
[root@www03 ~]#
vi /etc/httpd/conf/httpd.conf


# 366行目:コメント化

#
UserDir disable

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

UserDir public_html

# 381行目 - 392行目:コメント解除

<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>

[root@www03 ~]#
/etc/rc.d/init.d/httpd restart

Stopping httpd:
[ OK ]

Starting httpd:
[ OK ]
[2] 一般ユーザーでCGIテストページを作成してみて動作確認をします。作成したテストページにWebブラウザでアクセスしてページが表示されればOKです。
[fedora@www03 ~]$
mkdir public_html

[fedora@www03 ~]$
chmod 711 /home/fedora

[fedora@www03 ~]$
chmod 755 /home/fedora/public_html

[fedora@www03 ~]$
cd public_html

[fedora@www03 public_html]$
vi 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;">
Test Page ( /home/fedora/public_html )
</div>
</body>
</html>
EOM
exit;


[fedora@www03 public_html]$
chmod 705 index.cgi
関連コンテンツ