Table of Contents
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
#!py -2 | |
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
# http://stackoverflow.com/questions/2455606/basichttpserver-simplehttpserver-and-concurrency | |
# http://stackoverflow.com/questions/10175812/how-to-create-a-self-signed-certificate-with-openssl | |
import SocketServer | |
import BaseHTTPServer | |
import SimpleHTTPServer | |
import ssl |