Skip to content

Instantly share code, notes, and snippets.

@gator-dev
gator-dev / dummy_https_server.py
Created January 26, 2021 15:13
Simple Python 3 HTTPS server for logging all GET and POST requests
#!/usr/bin/env python3
"""
Very simple python3 HTTPS server for logging requests
Combination of these two snippets:
- https://gist.github.com/mdonkers/63e115cc0c79b4f6b8b3a6b797e485c7
- https://gist.github.com/dergachev/7028596
-- # taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/
Usage::