From: "John N. Alegre" Date: 2006-02-19T04:43:29+09:00 Subject: Changing port for WEBrick ??? After working with rails code I have decided that WEBrick would be quite usefull for serving documents to a local LAN. To that end I want to have WEBrick listen over a different port for each set of documents I need to serve. I am just using the stock Rails framework here and starting WEBrick with libros ~%script/server. How can I change the port form 3000 to something else ... say 3020. I have tried putting server.port=3020 in either config/environment.rb or config/environments/production.rb and starting WEBrick with libros ~%script/server --environment=production It always comes up listening on port 3000. Naturally I do not want to modify the default lighttpd.conf file How can I do this? All help welcomed. Thanks.