Skip to content

Instantly share code, notes, and snippets.

@alvarow
Created June 21, 2016 02:37
Show Gist options
  • Save alvarow/311f73eef5bbc8b186a353efa25ab595 to your computer and use it in GitHub Desktop.
Save alvarow/311f73eef5bbc8b186a353efa25ab595 to your computer and use it in GitHub Desktop.
Simple HTTPS server example written in python
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/
# run as follows:
# python SimpleHTTPServer.py
# then in your browser, visit:
# https://localhost:8443
import BaseHTTPServer, SimpleHTTPServer
import ssl
httpd = BaseHTTPServer.HTTPServer(('localhost', 8443), SimpleHTTPServer.SimpleHTTPRequestHandler)
httpd.socket = ssl.wrap_socket (httpd.socket, keyfile='cert.plaintext.key', ca_certs='ca.pem', certfile='cert.pem', server_side=True)
httpd.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment