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