Skip to content

Instantly share code, notes, and snippets.

@mranosa
Created December 11, 2012 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mranosa/4259103 to your computer and use it in GitHub Desktop.
Save mranosa/4259103 to your computer and use it in GitHub Desktop.
use Rack::Static,
:urls => ["/images", "/scripts", "/views", "/css", "/font", "/styles"],
:root => "public"
run lambda { |env|
[
200,
{
'Content-Type' => 'text/html',
'Cache-Control' => 'public, max-age=86400'
},
File.open('public/index.html', File::RDONLY)
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment