Skip to content

Instantly share code, notes, and snippets.

@tritonrc
Created May 11, 2011 15:01
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 tritonrc/966620 to your computer and use it in GitHub Desktop.
Save tritonrc/966620 to your computer and use it in GitHub Desktop.
Simple rackup file that serves static files only
app = proc do |env|
Rack::File.new('.').call(env)
end
run app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment