[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Changing port for WEBrick ???

John N. Alegre

2/18/2006 7:43:00 PM

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.
2 Answers

Dae San Hwang

2/18/2006 7:49:00 PM

0

I think you should post rails related questions to
rails@lists.rubyonrails.org

Try "server webrick -p3020".

daesan

On Feb 19, 2006, at 4:43 AM, John N. Alegre wrote:

> 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.
>



Shashank Date

2/18/2006 7:57:00 PM

0