I am using django and everytime I do:
python manage.py runserver
it runs on 127.0.0.1:8000 and it works when I access it from my VM (I am running in on my VM). But on my host OS when I go to 127.0.0.1:8000, it says it cannot connect to it. I tried doing
python manage.py runserver 0.0.0.0:8000
as well and on my host OS, I tried connecting to the VM's IP (192.168.174.233:8000) but it again said I cannot connect to it. What am I doing wrong?
Edit: Host OS is Windows 8 and VM is Lubuntu.