I want to run simple HTTP server on LAN to test it, how can I bind my local ip to this server so that everyone in the same LAN can see it?
addr = ("192.168.10.14", 8765)
srvr = HTTPServer(addr,RequestHandler)
I get this error :
error: [Errno 10049] The requested address is not valid in its context
try this:
Here is what i did:
And got from an other machine: