Files
Test1/PythonHTTP.py
2020-11-23 17:23:05 +01:00

15 lines
327 B
Python

import BaseHTTPServer
import CGIHTTPServer
import cgitb; cgitb.enable()
server = BaseHTTPServer.HTTPServer
handler = CGIHTTPServer.CGIHTTPRequestHandler
server_address = ('',8000)
handler.cgi_directories = ['/info-mon']
#handler.cgi_directories = ["/cgi-bin/"]
httpd = server(server_address, handler)
httpd.serve_forever()