Skip to content Skip to sidebar Skip to footer

How To Make A Web Server Respond To A Request Outside The Local Network?

I've set up a web server on a Linux machine on port 8000, using: python -m SimpleHTTPServer 8000 If I run curl -XGET '127.0.0.1:8000' I get a response. But if I try accessing it on

Solution 1:

You should add port redirect from your router (adsl modem, switch, hub) to your computer. Or you can use ngrok (https://ngrok.com/) for such as things.


Post a Comment for "How To Make A Web Server Respond To A Request Outside The Local Network?"