ben
2006-Jul-06 14:27 UTC
[Rails] change prot numbers (run 2 rails applications, same time)
Hi, I am currently accessing my rails application from the url http://localhost:3000 how can I set it up to run another application at the same time but using a different port number. I belive im using webBrick if that makes any difference Thanks -- Posted via http://www.ruby-forum.com/.
Roland Mai
2006-Jul-06 14:39 UTC
[Rails] Re: change prot numbers (run 2 rails applications, same time
I guess you are running webrick... ruby script\server --help There you will find all options for the server config -- Posted via http://www.ruby-forum.com/.
Craig White
2006-Jul-06 15:14 UTC
[Rails] change prot numbers (run 2 rails applications, same time)
On Thu, 2006-07-06 at 16:26 +0200, ben wrote:> Hi, > > I am currently accessing my rails application from the url > http://localhost:3000 > > how can I set it up to run another application at the same time but > using a different port number. > > I belive im using webBrick if that makes any difference---- ruby script/server -p 3001 Craig