ユーザーページの公開
各ユーザーにホームページを公開させたい場合は、 httpd.conf から次のコメントをはずす。各ユーザーのホームディレクトリ直下の
public_html ディレクトリ下が公開される。
#<Directory /home/*/public_html>ユーザーディレクトリと public_html のパーミッションを変更する。
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS PROPFIND>
# Order allow,deny
# Allow from all
# </Limit>
# <Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
# Order deny,allow
# Deny from all
# </Limit>
#</Directory>
$ cd
$ chmod 711 ../ユーザディレクトリ
$ mkdir public_html
$ chmod 755 public_html
