Hi!
I'm having apache web server run on my pc, and have created one account for website
unfortunately, the site is not accessible and hit 403 Forbidden Error
Quote:
Forbidden
You don't have permission to access / on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
Apache/1.3.37 Server at forexbah.com Port 80
|
this is my httpd.conf file
Quote:
<VirtualHost 209.250.236.2:80>
ServerAlias www.forexbah.com
ServerAdmin webmaster@forexbah.com
DocumentRoot /home/forexbah/public_html
ServerName forexbah.com
User forexbah
Group forexbah
BytesLog /usr/local/apache/domlogs/forexbah.com-bytes_log
CustomLog /usr/local/apache/domlogs/forexbah.com combined
ScriptAlias /cgi-bin/ /home/forexbah/public_html/cgi-bin/
</VirtualHost>
<Directory "/home/forexbah/public_html">
Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
|
I have set chmod a+r /home/forexbah/public_html but the page still cannot be displayed
anything wrong with the httpd.conf ?