#!/nix/store/kjvgj2n3yn70hmjifg6y0bk9m4rf7jba-python3-3.12.10/bin/python3 # Import modules for CGI handling import cgi import cgitb # Enable error reporting cgitb.enable() # Create instance of FieldStorage form = cgi.FieldStorage() # Set the content type to HTML print("Content-Type: text/html") print("") # Output a simple HTML page print("") print("
") print("Your web server is working correctly!
") print("") print("")