SLES 12
Sponsored Link

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

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

www:~ #
a2enmod -l

actions alias auth_basic authn_file authz_host authz_groupfile authz_user autoindex cgi dir 
env expires include log_config mime negotiation setenvif ssl socache_shmcb userdir reqtimeout 
authn_core authz_core php5
[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>
関連コンテンツ