Created
January 5, 2012 18:36
-
-
Save alandipert/1566556 to your computer and use it in GitHub Desktop.
Deploy static sites to heroku and use heroku caching
This file contains hidden or 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
use Rack::Static, | |
:urls => ['/css', '/images'], # put directories here, files will get served for free | |
:root => "public" | |
run lambda { |env| | |
[ | |
200, | |
{ 'Content-Type' => 'text/html', 'Cache-Control' => 'public, max-age=86400' }, | |
File.open('public/index.html', File::RDONLY) # Point this at the starting file | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment