Hello!
I put a rails app (called “nines”) under one of my domains (www.pptt.com). So, it’s like this:
[vito]$ cd ~parki/pptt.com/nines
[vito]$ ls
README Rakefile app components config db doc lib log public script test tmp vendor
So, this is all good.
If I then type:
[vito]$ script/server
=> Booting WEBrick…
=> Rails application started on http://0.0.0.0:3000
=> Ctrl-C to shutdown server; call with --help for options
[2006-05-31 10:47:33] INFO WEBrick 1.3.1
[2006-05-31 10:47:33] INFO ruby 1.8.2 (2005-04-11) [i386-linux]
[2006-05-31 10:47:33] INFO WEBrick::HTTPServer#start: pid=8260 port=3000
Rails comes up all nicely, and I can surf to it:
Which is most cool.
However
I would like to be able to surf to
In other words, I’d like Rails to be on port 80 for my app.
How do I do this?
Any help is appreciated - I looked in the howto and didn’t find this.
Perhaps there is some DreamHost magic needed.
Thanks in advance.
parki…