Shane,
Your conf is probably OK. And actually your case is a typical one - you
need to set public access permissions on the directory that you set the
DocumentRoot to be.
It means you should run the command:
chmod 755 -R /home/siteadmin/site.com
Hillar Petersen
[EMAIL PROTECTED]
> New to linux, still trying to figure things out. I've setup the
httpd.conf
> file for a domain to appear on the server, and all the files have been
> uploaded to that location. However, when I try to browse the site, I
get a
> 403-Forbidden response.
> Here's the info I've added to the httpd.conf:
>
> NameVirtualHost xxx.xx.x.xxx
>
> <VirtualHost xxx.xx.x.xxx>
> ServerName www.site.com
> DocumentRoot /home/siteadmin/site.com
> ErrorLog logs/site.com-error_log
> TransferLog logs/site.com-access_log
> </VirtualHost>
>
> Is there something within this that's missing/wrong/etc.? If not, is
there
> something else I'm missing? Something where permissions need to be
changed?
> Another file that needs to be edited? Thanks in advance for any help.
>
> Shane