I am trying to develop a website using Django framework and launched using DigitalOcean.com and deployed the necessary files into django-project.
I had to include st
The error log is straightforward. As it suggested,You need to add 198.211.99.20 to your ALLOWED_HOSTS setting.
ALLOWED_HOSTS
In your project settings.py file,set ALLOWED_HOSTS like this :
ALLOWED_HOSTS = ['198.211.99.20', 'localhost', '127.0.0.1']
For further reading read from here.