Skip to content

Instantly share code, notes, and snippets.

@tbbooher
Created April 7, 2015 00:50
Show Gist options
  • Save tbbooher/844d4a66304ee7576747 to your computer and use it in GitHub Desktop.
Save tbbooher/844d4a66304ee7576747 to your computer and use it in GitHub Desktop.
use Rack::Static,
:urls => ["/images", "/js", "/css"],
: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