I have my Django application running with python manage.py runserver 0.0.0.0:8000
It is accessible within same network in every device with <your LAN ipv4 address>:8000
However. I want to access this outside my network with <your public address>:8000
What is the way to do this?
- Django app is running on windows 10.
- I have already written
ALLOWED HOSTS : ["*"]
Maybe there's some issue with DNS or firewall.
0.0.0.0
should let me access with <your public address>:8000
but it is not giving access.
Please help..