cannot host django project in local network

249 Views Asked by At

I wanted to acess the web page that i did in django in all devices(mobile and desktop) connected in my network, i tried:

  1. just python manage.py runserver and acess the http://127.0.0.1:8000/ given by the console. The chrome of my mobile gives me "connection refused"
  2. put the ip in ALLOWED_HOST and python manage.py runserver my_ip:8000 my_ip is the number of my ip that the https://www.whatismyip.com/ gives me.
  3. python manage.py runserver 0:8000, it gives me [Errno 11001] getaddrinfo failed

what can i do?

1

There are 1 best solutions below

1
On

Try this:

ALLOWED_HOSTS = ['*']