Redhat Apache 2.2.3 Not Loading

apache-2.2redhat

I have Apache 2.2.3 installed on this server, and when I try loading its webpage, it does not load. I just get a loading sign that it is trying to connect but no connection has been made.

I check the conf file and it is listening on all ips on port 80. It also has a proper vhost file as well as has a simple text html file for the index display "Test".

Some Additional Information:

It neither works for the domain or the ip address or even localhost from the server. I did a wget of localhost and got nothing

[root@server conf]# netstat -tulpn | grep ':80'
tcp        0      0 :::80                       :::*                        LISTEN      6256/httpd   

My Apache conf: http://pastebin.com/MRDA8EkQ
Ip Tables Config: http://pastebin.com/nukXe5sD

Best Answer

It looks like your firewall needs to allow access on port 80 try

/sbin/iptables -I RH-Firewall-1-INPUT -p tcp -m tcp --dport 80 -j ACCEPT

and see if that works. If it does then save your firewall configuration with

/sbin/service iptables save