Skip to content

Instantly share code, notes, and snippets.

@maxy
Last active August 29, 2015 14:05
Show Gist options
  • Save maxy/f1dacea272f9b48fabd2 to your computer and use it in GitHub Desktop.
Save maxy/f1dacea272f9b48fabd2 to your computer and use it in GitHub Desktop.
Simple HTTP Server.
#!/usr/bin/env ruby
require 'webrick'
server = WEBrick::HTTPServer.new Port: 8888, DocumentRoot: Dir::pwd
trap(:INT){server.shutdown}
server.start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment