Reputation: 552
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
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
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