Skip to content

Instantly share code, notes, and snippets.

@minhajuddin
Created July 23, 2011 21:00
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 minhajuddin/6c59bc5a77cef307e61f to your computer and use it in GitHub Desktop.
Save minhajuddin/6c59bc5a77cef307e61f to your computer and use it in GitHub Desktop.
Use WEBrick to start a web server serving static content
#!/usr/bin/env ruby
#original source http://eggandham.com/2010/11/use-webrick-to-start-a-web-server-serving-static-content/
require 'webrick'
require 'optparse'
include WEBrick # let's import the namespace so
# I don't have to keep typing
# WEBrick:: in this documentation.
options = {:Port=>8090, :DocumentRoot=> './'}
optparser = OptionParser.new do |opts|
opts.banner = "Usage: #{File.basename(__FILE__)} [options]"
opts.on("-p", "--port port_num", "Specify Port Number") do |port|
options[:Port] = port
end
opts.on("-d", "--docroot path", "Specify Document Root Folder") do |root|
options[:DocumentRoot] = root
end
end
def start_webrick(config = {})
server = HTTPServer.new(config)
['INT', 'TERM'].each {|signal|
trap(signal) {server.shutdown}
}
#open the browser in the default browser
`which gnome-open && gnome-open http://localhost:#{config[:Port]}/`
server.start
end
begin
#parse options and start server
optparser.parse!(ARGV)
start_webrick(options)
rescue StandardError=>e
puts e
puts optparser.to_s
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment