Update: Still have the same basic problem, I can access the vhost2 from the Internet, but can only access vhost3 from the localhost- not from the Internet. The behavior in my reply was not repeatable. I tried to completely open up access to the vhost3 site by:
order allow,deny allow all But still get a forbidden 403 error. Apache error log says the same message "client denied by server configuration". Anyone have a thought why I can't seem to enable access? On Fri, Jun 21, 2013 at 11:30 PM, Kirk Woellert <kdwo...@gmail.com> wrote: > 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 <icici...@gmail.com> wrote: > >> >> > <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 >> > >> Assuming its not the file permission have you tried >> >> Order Allow,Deny >> Allow from xxx.xxx.xxx.xxx 127 >> Deny from all >> >> ? >> > > > >