Skip to content

Instantly share code, notes, and snippets.

@coreyhaines
Forked from gustin/config.ru
Created April 23, 2012 02:22
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 coreyhaines/2468329 to your computer and use it in GitHub Desktop.
Save coreyhaines/2468329 to your computer and use it in GitHub Desktop.
use Rack::Static,
urls: {
'/': 'index.html'
},
root: 'public'
run Rack::URLMap.new({
'/': Rack::Directory.new('public')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment