Its not file permissions -So, I tried the suggestion. Now, in addition to access denied from the public IP, access is also denied on the localhost (I tried the alias and a physical path).AND the site with a FQDN got redirected to the default Apache site (/var/www). I was not expecting the currently working vhost to get broken like that. I changed things back as per the start of my post but, I guess this means something is very wrong with how the vhosts are setup. Some sort of namespace confusion by Apache?On Fri, Jun 21, 2013 at 8:42 PM, Igor Cicimov <icicimov@xxxxxxxxx> wrote:
Assuming its not the file permission have you tried
> <VirtualHost *:80>
> ServerName test
> ServerAlias test
> DocumentRoot /home/user3/public_html/test
> <IfModule mod_fcgid.c>
> SuexecUserGroup test test
> <Directory /home/user3/public_html/test>
> Order Deny,Allow
> Deny from all
> Allow from xxx.xxx.xxx.xxx 127
>Order Allow,Deny
Allow from xxx.xxx.xxx.xxx 127
Deny from all?