Answers for "What is role of ALLOWED_HOSTs in Django"

2

django setup allowed hosts

ALLOWED_HOSTS = ['*']
Posted by: Guest on May-26-2021
0

What is role of ALLOWED_HOSTs in Django

ALLOWED_HOSTS.-
  A list of strings representing the host/domain names that this Django site can serve. 
  This is a security measure to prevent HTTP Host header attacks,
  which are possible even under many seemingly-safe web server configurations.
Posted by: Guest on August-28-2021

Code answers related to "What is role of ALLOWED_HOSTs in Django"

Python Answers by Framework

Browse Popular Code Answers by Language