Nightmare with 3 web domains one displays local but web pages do not show on internet
I ran the suggested program getinfo.sh network and the results are at
PasteBin
After 2 weeks and a lot of reading I have One site loading on the localhost but the other 2 web sites error out. None show on the internet.
Centos 5.8 is what I installed on a standalone system.

I have a block of 5 IP addresses with 3 that I have domain names for. I just renewed the base IP address for another 5 years.
I need to run the 3 domains on Centos5.8, I also have 3 other computers. 2 XP boxes, one a laptop and a Win7 box.
I did have 78ez.com running from a win95 then a XP and finally win7 all with Apache. but the attacks killed me so I now need more security so I put centos5.8 on a separate computer.
I can pull files to/from the windows boxes and Centos 5.8
What I need to know is how to get these web sites to show on the internet please.
AND/OR if anyone knows the
1.basic setup needed to run a Linux web-server I think way too much software is installed. Granted I do not know what most of it is and internet research for 258 programs is mind numbing at best.
2. when your web pages show on local-host but not on the internet what is the most likely reason. Or is there a step by step resource you can follow to trouble shoot the reason?

I did add to IPTABLES.conf
-A RH-Firewall-1-INPUT -m state --state NEW -p tcp --dport 80 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -p tcp --dport 443 -j ACCEPT
the boot log says it can't find the command?

nslookup 78ez.com
Server: home
Address: 192.168.0.1
Non-authoritative answer:
Name: 78ez.com
Address: 75.160.145.121

yet I have the dns but do not know how to set them up
75.160.145.124 78hosting.com ## Name servers 205.178.190.9 - 206.188.198.9
75.160.145.122 couch-potato-sales.com ##Name servers ns57.worldnic.com 205.178.190.29 ns58.worldnic.com 206.188.198.29
78ez.com 75.160.145.121
Domain servers in listed order:
AUTHNS1.MPLS.QWEST.NET 63.231.205.1 63.231.205.1 63.224.0/12
AUTHNS2.DNVR.QWEST.NET 206.196.128.12
AUTHNS3.STTL.QWEST.NET 206.81.192.11

ipconfig
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . : gateway.2wire.net
Link-local IPv6 Address . . . . . : fe80::258f:1440:3eab:cf8a%11
IPv4 Address. . . . . . . . . . . : 192.168.0.64
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.0.1
Tunnel adapter isatap.gateway.2wire.net:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . : gateway.2wire.net
Tunnel adapter Teredo Tunneling Pseudo-Interface:
Connection-specific DNS Suffix . :
IPv6 Address. . . . . . . . . . . : 2001:0:4137:9e76:1c8e:f02:b45f:6e81
Link-local IPv6 Address . . . . . : fe80::1c8e:f02:b45f:6e81%12
Default Gateway . . . . . . . . . : ::

Hosts file
127.0.0.1
www.couch-potato-sales.com www localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
192.168.0.1
www.78ez.com
192.168.0.1
www.78ezhosting.com
192.168.0.1
www.couch-potato-sales.com
75.160.145.121
www.78ez.com
75.160.145.124
www.78ezhosting.com## Name servers 205.178.190.9 - 206.188.198.9
75.160.145.122 mail.couch-potato-sales.com
75.160.145.121 78ez.com
75.160.145.121 EZHOSTING.78ez.com
75.160.145.121 gaming.78ez.com
75.160.145.121 money.78ez.com
75.160.145.121 recipes.78ez.com
75.160.145.121 smtp.78ez.com
75.160.145.121 waterworks.78ez.com
75.160.145.121 sub.78ez.com # Older PHP server
75.160.145.121 host.78ez.com
75.160.145.122
www.couch-potato-sales.com##Name servers ns57.worldnic.com 205.178.190.29 ns58.worldnic.com 206.188.198.29
Reading another post I found this information is valuable.
ifcfg-eth0
# NVIDIA Corporation MCP61 Ethernet
DEVICE=eth0
BOOTPROTO=dhcp
HWADDR=20:CF:30:6F:05:52
ONBOOT=yes
TYPE=Ethernet
USERCTL=no
IPV6INIT=no
PEERDNS=yes
[root@www ~]# ifconfig
eth0 Link encap:Ethernet HWaddr 20:CF:30:6F:05:52
inet addr:192.168.0.65 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:52543 errors:0 dropped:0 overruns:0 frame:0
TX packets:30538 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:63597339 (60.6 MiB) TX bytes:2718484 (2.5 MiB)
Interrupt:50 Base address:0xa000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:3803 errors:0 dropped:0 overruns:0 frame:0
TX packets:3803 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:3804455 (3.6 MiB) TX bytes:3804455 (3.6 MiB)
[root@www ~]#
APACHE short Config
http://pastebin.com/xDGNqBCJ
Code:
ServerTokens OS
ServerRoot "/etc/httpd"
PidFile "/var/run/httpd.pid"
TimeOut 200
KeepAlive on
MaxKeepAliveRequests 100
KeepAliveTimeout 15
<IfModule prefork.c>
StartServers 8
MinSpareServers 5
MaxSpareServers 20
MaxClients 50
MaxRequestsPerChild 50
</IfModule>
<IfModule worker.c>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
# also tried Listen 75.160.145.121:80
# also tried Listen 75.160.145.122:80
# also tried Listen 75.160.145.124:80
Listen *:80
Include conf.d/*.conf
ServerAdmin meows@techie.com
ServerName localhost
UseCanonicalName off
DocumentRoot "/var/www/html"
DirectoryIndex index.html
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>
##################### VIRTUAL HOSTS ################################
#====== DEFAULT VIRTUAL HOST ===========
# LOCALHOST
<VirtualHost _default_:80>
ServerName localhost
DocumentRoot "/var/www/html/"
</VirtualHost>
# Virtual host 1
# also tried <VirtualHost 75.160.145.121>
<VirtualHost *:80>
ServerAdmin meows@techie.com
ServerName www.xxxxx.com
DirectoryIndex index.php index.html index.htm index.shtml
<Directory "/var/www/html/">
Options all
AllowOverride all
Allow from all
Deny from all
Order Deny,Allow
</Directory>
LogLevel debug
HostNameLookups on
</VirtualHost>
# Virtual host 2
# also tried <VirtualHost 75.160.145.122>
<VirtualHost *:80>
DocumentRoot "/var/www/html/xxx/"
ServerName www.xxx.com
DirectoryIndex index.php index.html index.php index.htm index.shtml
ErrorLog logs/xx/error_log
ServerAdmin meows@techie.com
TransferLog logs/xx/access_log
<Directory "/var/www/html/xxx/">
Options all
AllowOverride all
Allow from all
Deny from all
Order Deny,Allow
</Directory>
TransferLog logs/xxxez/access_log
ErrorLog logs/xxxez/error_log
LogLevel debug
</VirtualHost>
# also tried Virtual host www.xxxezhosting.com
# also tried <VirtualHost 75.160.145.124>
#<VirtualHost xxxx>
<VirtualHost *:80>
ServerName www.xxxezhosting.com
DocumentRoot "/var/www/html/xxxhosting/"
ErrorLog logs/xxxhosting/error_log
ServerAdmin meows@techie.com
TransferLog logs/xxxhosting/access_log
DirectoryIndex index.php index.html index.htm index.shtml
<Directory "/var/www/html/xxxhosting/">
Options all
AllowOverride all
Allow from all
Deny from all
Order Deny,Allow
</Directory>
LogLevel debug
</VirtualHost>
<Directory "/">
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "/var/www/html">
Options Indexes Includes FollowSymLinks
AllowOverride None
Allow from all
Order allow,deny
</Directory>
<Directory "/var/www/icons">
Options Indexes MultiViews
AllowOverride None
Allow from all
Order allow,deny
</Directory>
<Directory "/var/www/cgi-bin">
Options ExecCGI
AllowOverride None
Allow from all
Order allow,deny
</Directory>
Many Thanks for your consideration of help.