import http.server, socketserver, os
P=8090
os.chdir("/root/tmpfiles")
with socketserver.TCPServer(("",P), http.server.SimpleHTTPRequestHandler) as h:
    print(f"Serving on {P}")
    h.serve_forever()
