Alright, firstly if ive managed to post this in the wrong place then forgive me.
Im having some issues with Apache2 and getting it to run with multiple ports. According to the Apache2 docs the new syntax for opening a port is the Listen directive since Port is deprecated, and now not supported.
However, if i have more than one Listen directive (which the Apache2 docs say is ok, and the config test checks out) then the Apache2 process crashes out as so:
Code:
[Fri Jun 10 23:28:50 2005] [alert] Child 29959 returned a Fatal error...\nApache is exiting!
This is the segment of the httpd.conf which it crashes on.
Code:
Listen 80
Listen 1234
If i comment out either of the two Listens, so there is only one Listen directive in the entire file, it is ok.
This happens with both the ServerLogistics binary distribution, and a compile from Apache2 tarball.
Im running Jaguar 10.3.9 as so:
Code:
Darwin Micah.local 7.9.0 Darwin Kernel Version 7.9.0: Wed Mar 30 20:11:17 PST 2005; root:xnu/xnu-517.12.7.obj~1/RELEASE_PPC Power Macintosh powerpc
With the version of apache as so:
Server version: Apache/2.0.52
and
Server version: Apache/2.0.54
Has anyone come across this before?