Skip to content

Instantly share code, notes, and snippets.

@chrismdp
Last active May 5, 2021 18:54
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save chrismdp/7006014 to your computer and use it in GitHub Desktop.
Save chrismdp/7006014 to your computer and use it in GitHub Desktop.
Simple http server in ruby, that ensures there's no browser caching. For serving static files in development. I copy this into my ~/bin directory.
#!/usr/bin/env ruby
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
server = WEBrick::HTTPServer.new :Port => 8989
server.mount '/', NonCachingFileHandler , Dir.pwd
trap('INT') { server.stop }
server.start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment