Skip to content

Instantly share code, notes, and snippets.

View alecandido's full-sized avatar
:electron:
quantum processing...

Alessandro Candido alecandido

:electron:
quantum processing...
View GitHub Profile
import http.server
import ssl
import socket
class HTTPServerV6(http.server.HTTPServer):
address_family = socket.AF_INET6
httpd = HTTPServerV6(("::", 443), http.server.SimpleHTTPRequestHandler)