Commit f9d45665 authored by Joel Martin's avatar Joel Martin

Add minimal python directory web server.

parent 8b945f2a
#!/usr/bin/python
from BaseHTTPServer import HTTPServer
from CGIHTTPServer import CGIHTTPRequestHandler
server = HTTPServer(('',8777), CGIHTTPRequestHandler)
server.serve_forever()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment