I am setting up my own Django server using this Digital Ocean tutorial. I created the Django framework following each step, and ran the server using this command:
For development, you can use the * wildcard to allow all hosts in settings.py:
*
settings.py
ALLOWED_HOSTS = ['*']
Important
Modify this configuration when you deploy your app in production environment.