Solved del.

Apache doc's (http://httpd.apache.org/docs/2.0/bind.html):

For example, to make the server accept connections on both port 80 and port 8000, use:

Code:
Listen 80
Listen 8000
To make the server accept connections on two specified interfaces and port numbers, use

Code:
Listen 192.170.2.1:80
Listen 192.170.2.5:8000
IPv6 addresses must be surrounded in square brackets, as in the following example:

Code:
Listen [2001:db8::a00:20ff:fea7:ccea]:80
 
You can't access the website on it's external address from inside the network.
 
Gummeah, please show what "can't see" means. A specific example might narrow down whether it's client or server, IP address or DNS.
 
SirDice said:
You can't access the website on it's external address from inside the network.

That is the case when the external IP address is on a cable/DSL router/modem, but when the external IP is aliased to the server where Apache is running, it should work just fine from a LAN. This appears to be the case here (rl1) unless I misread things.
 
Back
Top