Created
February 1, 2011 17:18
-
-
Save arronmabrey/806189 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'optparse' | |
require 'webrick' | |
class NonCachingFileHandler < WEBrick::HTTPServlet::FileHandler | |
def prevent_caching(res) | |
res['ETag'] = nil | |
res['Last-Modified'] = Time.now + 100**4 | |
res['Cache-Control'] = 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0' | |
res['Pragma'] = 'no-cache' | |
res['Expires'] = Time.now - 100**4 | |
end | |
def do_GET(req, res) | |
super | |
prevent_caching(res) | |
end | |
end | |
options = {:port => 8080, :directory => `pwd`.chop!} | |
OptionParser.new do |opts| | |
opts.banner = "Usage: webrick [-p PORT] [-d DIRECTORY]" | |
opts.on("-p PORT", Integer, "Default port #{options[:port]}.") do |p| | |
options[:port] = p | |
end | |
opts.on("-d DIRECTORY", String, "Default is the current working directory.") do |d| | |
options[:directory] = d | |
end | |
end.parse! | |
puts "Starting WEBrick...\n\n" | |
puts "http://localhost:#{options[:port]} -> #{options[:directory]}\n\n" | |
puts 'Press ctrl-c to shutdown WEBrick.' | |
server = WEBrick::HTTPServer.new :Port => options[:port] | |
server.mount "/", NonCachingFileHandler , options[:directory] | |
trap('INT') do | |
print "\e[0m\r\e[0K" | |
$stdout.flush | |
server.stop | |
end | |
server.start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment