删除AWS默认beanstalk页面

时间:2013-09-22 01:54:45

标签: ruby-on-rails amazon-web-services elastic-beanstalk

我无法在删除显示的AWS Elastic Beanstalk默认页面主题上找到很多帮助。 AWS URL:wp-env(.....).elasticbeanstalk.com

在我的rails应用程序中,我将根设置为root :to => 'posts#index'但是当我访问我的AWS URL时,我得到了默认页面,而不是我的应用程序的帖子索引。

我似乎能够将URL指向另一个“索引”页面的唯一方法是在my / Public文件夹中创建一个静态index.html页面。我显然不想这样做。

任何解决方案吗?

感谢。

编辑:也许我需要在我的routes.rb中指定另一行?

1 个答案:

答案 0 :(得分:0)

我有同样的问题。

看一下routes.rb文件中的注释,有一条注释行说你应该删除文件:public / index.html

但要小心你如何删除它!我做错了,造成了各种各样的破坏。

$ rm public/index.html

$ git add --all (to ensure removed files get removed)
$ git commit -am "removed the index file"
$ git push
$ git aws.push

这对我有用。

祝你好运!