ユーザディレクトリ公開時に「403 Forbidden」

httpd.confに

;; コメントアウト
UserDir disable
→#UserDir disable

;; 追記
UserDir public_html

としてApacheを再起動。適当にindex.htmlファイルとかを作って、http://example.com/~user/にアクセスすると403が返ってくる。
原因はコイツ

# ls -l /home

drwx------ 4 user user 4096 6月 2 11:00 user

なので、

# chmod 0711 /home/user

として再度アクセスしたら無事表示。
またハマっちゃった(・x・ ).o0○