Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Lets say I have a Rails app running on Heroku at www.myapp.com. I would like to create a separate Heroku application to serve a simple (Rack-Jekyll) blog for my Rails app but I would like this blog to be accessible at

www.myapp.com/blog/

Is there a way I merge the two apps together considering that they are both Rack based, but keep them as separate Heroku applications and separate git repositories?

share|improve this question

2 Answers

up vote 0 down vote accepted

You can use redirect method.

match "/blog" => redirect("http://myapp.com/blog")
share|improve this answer
Accepting this because it technically could get me what I asked for. I think it would probably be a fragile solution though. In the end I decide to just generate my Jekyll blog into `public/blog/'. – David Tuite Oct 26 '11 at 0:44

No, this isn't possible (currently). You'll need to add the /blog as a gem or engine to the mainapp repository, and then push the combined repository to heroku.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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