Not sure if this is a valid syntax or not:
ServerName xxxxxxx13.xxx.xxx:80
I think you should leave the port off of that one...

That is the only thing that really jumped out at me; however, I have never attempted to run apache in a windows environment, so that probably isn't helping matters. Also, Apache, at least in an unix environment has a syntax checker:

/usr/apache/bin/apachectl
usage: /usr/apache/bin/apachectl (start|stop|restart|fullstatus|status|graceful|configtest|help)

start - start httpd
stop - stop httpd
restart - restart httpd if running by sending a SIGHUP or start if
not running
fullstatus - dump a full status screen; requires lynx and mod_status enabled
status - dump a short status screen; requires lynx and mod_status enabled
graceful - do a graceful restart by sending a SIGUSR1 or start if not running
configtest - do a configuration syntax test
help - this screen



run apachectl configtest

If there is an issue with your configuration, this will be (usually) pretty helpful.


The other thing that is interesting to me, is that it appears it is trying to determine an address to bind the listening socket to and it is coming back with 0.0.0.0 and is then bitching it is a dead network...You might want to under your 'Listen' directive, give your full IP along with the :80.

Hope that helps.