Skip to content

Instantly share code, notes, and snippets.

@djcommandline
Created October 4, 2014 17:39
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 djcommandline/620e3150115b3dfa1d0a to your computer and use it in GitHub Desktop.
Save djcommandline/620e3150115b3dfa1d0a to your computer and use it in GitHub Desktop.
Simple HTTP server is python on Mac
# Start an HTTP server from a directory, optionally specifying the port
function server() {
local port="${1:-8000}";
sleep 1 && open "http://localhost:${port}/" &
# Set the default Content-Type to `text/plain` instead of `application/octet-stream`
# And serve everything as UTF-8 (although not technically correct, this doesn’t break anything for binary files)
python -c $'import SimpleHTTPServer;\nmap = SimpleHTTPServer.SimpleHTTPRequestHandler.extensions_map;\nmap[""] = "text/plain";\nfor key, value in map.items():\n\tmap[key] = value + ";charset=UTF-8";\nSimpleHTTPServer.test();' "$port";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment