print("Content-type: text/html")
print()
print(
"""<html>
<body>
<h1>GOTO HELL</h1>
</body>
</html>""")
from http.server import HTTPServer, CGIHTTPRequestHandler
server_address = ("localhost", 8000)
httpd = HTTPServer(server_address, CGIHTTPRequestHandler)
httpd.serve_forever()
<Directory "/var/www/htdocs/somedir">
Options +ExecCGI
</Directory>
<Directory "/home/*/public_html">
Options +ExecCGI
AddHandler cgi-script .cgi
</Directory>