-
-
Save rafaelss/408193 to your computer and use it in GitHub Desktop.
rack static site
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Static site using Rack (with expire headers and etag support)... great for hosting static sites on Heroku | |
require "bundler/setup" | |
require 'rack/contrib' | |
require 'rack-rewrite' | |
use Rack::StaticCache, :urls => ['/images','/css','/favicon.ico'], :root => "public" | |
use Rack::ETag | |
use Rack::Rewrite do | |
rewrite '/', '/index.html' | |
end | |
run Rack::Directory.new('public') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "http://rubygems.org" | |
gem 'rack-contrib', :git => 'git://github.com/rack/rack-contrib.git' | |
gem 'rack-rewrite' |
This code is supposed to work under an older version of bundler.
I just updated it to work with latest stable bundler.
Works great. Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This does not seem to work on Heroku with bundler (1.0.0.rc.5). Have you been able to test it? Also can you comment on what line #3 is supposed to include?
Thanks!