Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dustingetz
Forked from rca/serve.py
Last active August 14, 2019 18:14
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save dustingetz/5348582 to your computer and use it in GitHub Desktop.
Save dustingetz/5348582 to your computer and use it in GitHub Desktop.
serve static assets for frontend development, with http headers to disable caching
#!/usr/bin/env python
import SimpleHTTPServer
class MyHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
def end_headers(self):
self.send_my_headers()
SimpleHTTPServer.SimpleHTTPRequestHandler.end_headers(self)
def send_my_headers(self):
self.send_header("Cache-Control", "no-cache, no-store, must-revalidate")
self.send_header("Pragma", "no-cache")
self.send_header("Expires", "0")
if __name__ == '__main__':
SimpleHTTPServer.test(HandlerClass=MyHTTPRequestHandler)
@slorber
Copy link

slorber commented Feb 13, 2014

Hello, by chance do you know how to disable the cache from command line?
I'm using this script:

function hostit(){
  PORT=${1:-'8080'}
  echo "Will try to host your directory $pwd at http://localhost:$PORT"
  python -m SimpleHTTPServer $PORT
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment