I am using the dashboard on port 8000 using the
python manage.py runserver
command because the problem showed here
On localhost it works, but if I try to access it from outside, it doesn't work. Why?
This is my situation:
Horizon is a Django app, and the django runserver command binds only to localhost by default. If you want it to be accessible from outside, do:
python manage.py runserver 0.0.0.0:8000