[Django]-Cannot access django app through ip address while accessing it through localhost

71👍

I assume you’re using the development server. If so, then you need to specifically bind to your external IP for the server to be available there. Try this command:

./manage.py runserver 193.140.209.49:8000

Leave a comment