Skip to content

Instantly share code, notes, and snippets.

@aoleg94
aoleg94 / nxmp-http-server.py
Last active June 21, 2022 14:42
nxmp-http-server.py
#!/usr/bin/env python3
from http.server import *
from http import HTTPStatus
import os, sys, io, socket, urllib.parse, html
class ApacheLikeHTTPRequestHandler(SimpleHTTPRequestHandler):
def list_directory(self, path):
"""Helper to produce a directory listing (absent index.html).