From: Sam H. v. a. <we...@ma...> - 2005-06-28 00:17:12
|
Log Message: ----------- fixed comment about port number to describe new >= 8000 numbering scheme Modified Files: -------------- webwork2/conf: devel.apache-config.dist Revision Data ------------- Index: devel.apache-config.dist =================================================================== RCS file: /webwork/cvs/system/webwork2/conf/devel.apache-config.dist,v retrieving revision 1.6 retrieving revision 1.7 diff -Lconf/devel.apache-config.dist -Lconf/devel.apache-config.dist -u -r1.6 -r1.7 --- conf/devel.apache-config.dist +++ conf/devel.apache-config.dist @@ -58,8 +58,9 @@ $User = $user_name; $Group = $group_name; -# It will listen on a port equal to the UID of the user who starts it + 10000. -$Port = $> + 7000; # effectively picks a port between 8000 and 8999 since uid's are 1000+ +# It will listen on a port equal to the UID of the user who starts it +7000. +# This effectively picks a port between 8000 and 8999 since UID's are >=1000. +$Port = $> + 7000; # Email address of server administator. $ServerAdmin = "$user_name\@$host_name"; |