As I mentioned briefly in my post, you may have to fix permissions - as David said, you'll see 500 errors and can go check in the logfile /etc/httpd/logs/audit_log. It's actually safe to run the following command, which will remove group and other write permission from all files and directories under public_html directories in /home:
Code:
chmod -R go-w /home/*/public_html
OR
find /home -name public_html | xargs -r chmod -R go-w
or you can run a find variant to see what files/directories it would fix:
Code:
find /home \( -perm -2 -o -perm -20 \) -print | xargs ls -ld
If you want to be cautious, run the last find command first and save the output. As both of these commands change a lot of permissions, you should make sure you have a backup first.
It's probably safe to remove write permissions from *everything* in /home (ie: chmod -R go-w /home), but I'm not 100% sure as some of the mail hierarchy has group write permission, which is probably irrelevant as the group ownership is the user. (Perhaps someone with experience could comment)