Skip to main content
0 votes
1 answer
3k views

Using this code: from http import server class Serv(server.BaseHTTPRequestHandler): def do_GET(self): self.send_response(200) server.HTTPServer(('host', 80), Serv).serve_forever() I have ...
MLG Herobrine's user avatar
0 votes
1 answer
90 views

I am using below command to create a simple http server so that end users can download files on the unix server directly using the URL. But this is kinda risky and i need to implement a user ...
shanaya sharma's user avatar