hans wrote:
> I have attached my httpd.conf. Maybe, I have not seen a possible failer.
> But I cannot find out, what's the reason, why a connection to
> "localhost" is NOT possible.
[httpd.conf]
> # Port: The port to which the standalone server listens. For
> # ports < 1023, you will need httpd to be run as root initially.
> #
> Port 8080
Web browsers by default send requests to port 80, but your apache server
is listening on port 8080. To check this is the problem try entering:
http://127.0.0.1:8080/
into your web browser and you should get a response.
To fix it simply change the line that says "Port 8080" to "Port 80"
(Without the quotes of course ...) and restart apache with
"/etc/rc.d/init.d/httpd restart" or "/usr/local/apache/bin/apachectl
restart" depending on how you installed (I didn't really follow the rest
of the thread, sorry :( )
Lee
--
Lee Willis [EMAIL PROTECTED]