Skip to content

Instantly share code, notes, and snippets.

@inoh
Last active August 29, 2015 14:00
Show Gist options
  • Save inoh/11312606 to your computer and use it in GitHub Desktop.
Save inoh/11312606 to your computer and use it in GitHub Desktop.
webrick sample
# coding: utf-8
require 'webrick'
include WEBrick
WEBrick::HTTPUtils.load_mime_types('/etc/mime.types')
s = HTTPServer.new(
:Port => 80,
:DocumentRoot => '/Users/inoue/GoogleDrive/workspace/webrick/workspace'
)
trap("INT"){ s.shutdown }
s.start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment