Apache test page does not load
Hi, I'm running Apache 1.3 and having some issues getting the test page to display.
The server is configured with the following options (among others) in httpd.conf:
Code:
'ServerType standalone'
'Port 8080'
'ServerName localhost' (I've also tried 'ServerName 127.0.0.1')
'DocumentRoot /var/www'
'<Directory /var/www/>'
' Options Indexes Includes FollowSymLinks MultiViews'
' AllowOverride None'
' Order allow,deny'
' Allow from all'
'</Directory>'
'<IfModule mod_dir.c>'
' DirectoryIndex index.html index.htm index.shtml index.cgi index.php'
'</IfModule>'
The file '/var/www/index.html' exists with the attribs '-rw-r--r--'.
The server's been started with:
'apachectl start'
and reports:
'/usr/sbin/apachectl start: httpd started'.
I've verified that it's listening with:
'netstat -tap | grep LISTEN'
which returns:
'tcp 0 0 *:webcache *:* LISTEN 3078/apache'
When I try to load the page by pointing a webbrowser on the same machine to 'http://localhost:8080/' or 'http://127.0.0.1:8080/' the browser just sits there 'Connecting to localhost...' but never displays the test page. (I've configured the server to various ports with no change.)
Does anyone what's not set up properly?
Thanks