SLES 11 SP4
Sponsored Link

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

 
一般ユーザーが自身のホームディレクトリ内に置いたファイルを Web サイトとして公開できるようにします。
[1] Userdir を有効にします。
www:~ #
a2enmod userdir

www:~ #
a2enmod -l

actions alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user 
authn_dbm autoindex cgi dir env expires include log_config mime negotiation setenvif ssl 
suexec userdir php5 reqtimeout php53
[2] 一般ユーザーで PHP テストページを作成してみて動作確認をします。ページが表示されればOKです。
suse@www:~>
vi public_html/index.php
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align:center;">
<?php
      print "Userdir Test Page";
?>
</div>
</body>
</html>
関連コンテンツ