Django 0.0.0.0:80; can't access remotely
Posted
by user349555
on Stack Overflow
See other posts from Stack Overflow
or by user349555
Published on 2010-05-25T04:12:20Z
Indexed on
2010/05/25
4:21 UTC
Read the original article
Hit count: 135
Hello,
I'm trying to access my Django server from another computer on the same network. I've set up my server and can view everything correctly usingpython manage.py runserver
and going to http://127.0.0.1:8000
but when I try to use python manage.py runserver 0.0.0.0:80
, I can't view my Django page from another computer. The computer hosting the Django server has intranet IP 192.168.1.146. On my secondary computer, I fire up a browser and try to access http://192.168.1.146:80
to no avail. I've also forwarded port 80 (and I've tried 8000 as well) also to no avail :(. HELP!
© Stack Overflow or respective owner