Always displaying “generating pages” message
remino opened this issue · 3 comments
remino commented
When starting rackup, without any options, the Rack application starts and listens on port 9292, but only displays the following message when any HTTP request is sent from the browser:
This site is currently generating pages. Please reload this page after 10 secs.
# config.ru
require "rack/jekyll"
run Rack::Jekyll.new
# _config.yml
source: ./source
destination: ./public
plugins: ./plugins
markdown: maruku
paginate: 10
padde commented
For me, adding a web server to the Gemfile solved this, e.g.
gem 'thin'
remino commented
@jmccartie I switched to Middleman a while ago, but I use it to build static pages hosted by an old-school Apache server.