Michael
Michael

Reputation: 552

Add blog to Rails app on Heroku

I have a Rails app on Heroku with a Jekyll blog located at blog.myapp.com. I want to move the blog to www.myapp.com/blog/. What's the best way to do this? I'm happy to ditch Jekyll if there is an easier option. Thanks!

Upvotes: 1

Views: 510

Answers (2)

Nathan
Nathan

Reputation: 597

Bloggy seems to be what you're looking for.

"Bloggy is a simple gem that helps you generate a jekyll blog within your rails application by using generator commands similar to the ones you are used to already."

Upvotes: 2

coreyward
coreyward

Reputation: 80140

You should be able to change the base-url configuration to /blog for this to work.

https://github.com/mojombo/jekyll/wiki/Configuration

Upvotes: 1

Related Questions