websockify/web.py

7 lines
182 B
Python
Raw Normal View History

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