|
@@ -53,7 +53,7 @@ class HttpGetHandler(BaseHTTPRequestHandler):
|
|
|
self.send_error(400,f"File not found{self.path}")
|
|
|
|
|
|
def main(server_class=HTTPServer,handler_class=HttpGetHandler):
|
|
|
- server_address = ('localhost',8000)
|
|
|
+ server_address = ('',8000)
|
|
|
httpd = server_class(server_address,handler_class)
|
|
|
try:
|
|
|
print("Starting the Server!")
|