Created
November 1, 2011 21:20
-
-
Save aviflombaum/1331952 to your computer and use it in GitHub Desktop.
config.ru for static sites on heroku.
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 => ["/stylesheets", "/images"], :root => "public" | |
| run lambda { |env| [200, { 'Content-Type' => 'text/html', 'Cache-Control' => 'public, max-age=86400' }, File.open('public/index.html', File::RDONLY)] } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Then just use:
config.ru
public/index.html
public/stylesheets
public/javascripts