Last active
December 15, 2015 23:29
-
-
Save felipeclopes/5340877 to your computer and use it in GitHub Desktop.
Simple rack configuration for static sites and easy heroku deployment!
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
use Rack::Static, | |
################### | |
# Regular expression to include all pages. | |
# You could also write something like ["index.html", "about_us.html"] | |
################### | |
:urls => [/./], | |
:root => "index.html" | |
run lambda { |env| | |
[ | |
200, | |
{ | |
'Content-Type' => 'text/html', | |
'Cache-Control' => 'public, max-age=86400' | |
}, | |
File.open('index.html', File::RDONLY) | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment