I am building a rails app but it appears at example.com:3000, how do I make it appear at example.com?

Thanks

link|improve this question

64% accept rate
Are you using lighttpd? – anirudh4444 Jun 12 '11 at 9:12
feedback

2 Answers

up vote 3 down vote accepted

Presumably because you are running the development app on its default port.

Go through the deployment process for your live system.

link|improve this answer
I have followed the tutorial at linode for installing passenger here library.linode.com/frameworks/ruby-on-rails-apache/…, is there something else I need to do also? – Zakoff Jun 12 '11 at 19:31
feedback

If you run your app with rails server you can run it with rails server -p 80 but you must be root and this solution is not good for production. You'd better use a solution provided by Quentin's link.

link|improve this answer
I use this approach when I'm working on several snapshots of a project at once (juggling is fun!). But I use ports that start at 300 and increment by 10. I agree that this is only a development thing. In production Quentin is right... – jaydel Jun 12 '11 at 11:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.