mirror of
https://github.com/novnc/noVNC.git
synced 2026-05-26 23:19:41 +00:00
7 lines
182 B
Python
Executable File
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()
|