I'm trying to create a python-based website using wsgi, following instructions such as these.
This all works just fine as long as I'm accessing the website from the same PC on which it is hosted. However, when I try to access it from another PC on the same network (there shouldn't be any firewall between the two), it tells me the host can't be found. I'm using port 8080 for this. If I try to host a simple website on port 80, everything is fine.
So I assume the problem is that port 8080 is blocked? Is that correct?
If so, how do I go about unblocking it? And if not, then what else could be the problem?
A little bit of googling took me to this page, as a result of which I tried this command:
sudo iptables -A INPUT -p tcp --dport 8080 -j ACCEPT
But it didn't make any difference.
I'm using Ubuntu 12.04.
localhost? – user647772 Oct 8 '12 at 10:52