From: <jj...@us...> - 2004-01-14 22:42:18
|
Update of /cvsroot/ngetsuite/ngetsuite In directory sc8-pr-cvs1:/tmp/cvs-serv24131 Modified Files: sampleconfig testhttpd.rb Log Message: added httpd_port in config Index: sampleconfig =================================================================== RCS file: /cvsroot/ngetsuite/ngetsuite/sampleconfig,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** sampleconfig 27 Dec 2003 15:52:37 -0000 1.5 --- sampleconfig 14 Jan 2004 22:42:15 -0000 1.6 *************** *** 15,16 **** --- 15,18 ---- debug = 0 + httpd_port = 2000 + Index: testhttpd.rb =================================================================== RCS file: /cvsroot/ngetsuite/ngetsuite/testhttpd.rb,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** testhttpd.rb 3 Nov 2003 14:58:05 -0000 1.2 --- testhttpd.rb 14 Jan 2004 22:42:15 -0000 1.3 *************** *** 9,13 **** s = HTTPServer.new( ! :Port => 2000, :DocumentRoot => Dir::pwd + "/web" ) --- 9,13 ---- s = HTTPServer.new( ! :Port => ($config['httpd_port'] or 2000), :DocumentRoot => Dir::pwd + "/web" ) |