Debian 8 Jessie
Sponsored Link

ユーザーのホームディレクトリ領域を利用する2015/05/11

 
一般ユーザーが自身のホームディレクトリ内に置いたファイルを Web サイトとして公開できるようにします。
[1] 任意のディレクトリで CGI/PHP が実行可能なように設定します。
root@www:~#
a2enmod userdir

Enabling module userdir.
To activate the new configuration, you need to run:
  service apache2 restart

root@www:~#
vi /etc/apache2/mods-enabled/userdir.conf
# 6,7行目:変更

AllowOverride
All

Options
ExecCGI
root@www:~#
vi /etc/apache2/mods-enabled/php5.conf
# 23行目:コメント化

#
php_admin_flag engine Off
root@www:~#
systemctl restart apache2

[2] 一般ユーザーで CGI テストページを作成してみて動作確認をします。ページが表示されればOKです。
jessie@www:~$
mkdir public_html

jessie@www:~$
vi public_html/index.cgi
#!/usr/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 "Userdir Test Page";
print "\n</div>\n";
print "</body>\n</html>\n";

jessie@www:~$
chmod 705 public_html/index.cgi

[3] 一般ユーザーで PHP テストページを作成してみて動作確認をします。ページが表示されればOKです。
jessie@www:~$
vi public_html/index.php
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align:center;">
User's Home<br />
<?php
    print Date("Y/m/d");
?>
</div>
</body>
</html>
関連コンテンツ