-
-
Save drugoi/a4d141b139d46b65835176ba8a0a5d02 to your computer and use it in GitHub Desktop.
Python SimpleHTTPServer for Static Serving (React / Angular / Ember) in HTML5 mode (a la mod_rewrite)
This file contains 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
''' | |
Taken from: | |
http://stackoverflow.com/users/1074592/fakerainbrigand | |
http://stackoverflow.com/questions/15401815/python-simplehttpserver | |
''' | |
import SimpleHTTPServer, SocketServer | |
import urlparse, os | |
PORT = 3000 | |
INDEXFILE = 'index.html' | |
class MyHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): | |
def do_GET(self): | |
# Parse query data to find out what was requested | |
parsedParams = urlparse.urlparse(self.path) | |
# See if the file requested exists | |
if os.access('.' + os.sep + parsedParams.path, os.R_OK): | |
# File exists, serve it up | |
SimpleHTTPServer.SimpleHTTPRequestHandler.do_GET(self); | |
else: | |
# send index.html, but don't redirect | |
self.send_response(200) | |
self.send_header('Content-Type', 'text/html') | |
self.end_headers() | |
with open(INDEXFILE, 'r') as fin: | |
self.copyfile(fin, self.wfile) | |
Handler = MyHandler | |
httpd = SocketServer.TCPServer(("", PORT), Handler) | |
print "serving at port", PORT | |
httpd.serve_forever() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment