Files
noVNC/web.py
2010-03-31 19:44:48 -05:00

7 lines
182 B
Python
Executable File

#!/usr/bin/python
from BaseHTTPServer import HTTPServer
from CGIHTTPServer import CGIHTTPRequestHandler
server = HTTPServer(('',8777), CGIHTTPRequestHandler)
server.serve_forever()