Default rails landing page won't go away.

2010-01-08 Thread JGrubb
I'm a complete and utter nooby, though not so new that I haven't run a search or five on this list to find if anyone else is having this problem. I'm getting my feet wet with Heroku, Rails, and Git all at the same time. I've got a couple of little projects going, each of which have had the

Re: Default rails landing page won't go away.

2010-01-08 Thread David Dollar
Try the following git rm public/index.html git commit -m remove default index page git push heroku - David On Fri, Jan 8, 2010 at 9:15 AM, JGrubb therealjohnnygr...@gmail.com wrote: I'm a complete and utter nooby, though not so new that I haven't run a search or five on this list to find if

Re: Default rails landing page won't go away.

2010-01-08 Thread Carl Anderson
You may also need to try: heroku restart I had the same problem a while back and once I restarted the server it fixed the problem. I'm wondering if the index page was cache in Varnish perhaps? Carl On Fri, Jan 8, 2010 at 10:46 AM, David Dollar da...@heroku.com wrote: Try the following git

Re: Default rails landing page won't go away.

2010-01-08 Thread Devyn Cairns
Yeah, it's best to turn off caching while doing development. The easiest way to do this is # app/controllers/application_controller.rb class ApplicationController # blah blah blah # blah blah blah after_filter :set_no_cache private def set_no_cache headers['Cache-Control']