Created
June 21, 2016 02:37
-
-
Save alvarow/311f73eef5bbc8b186a353efa25ab595 to your computer and use it in GitHub Desktop.
Simple HTTPS server example written in python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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