This is a continued post from here
In your django production settings, you will need to add the record to ALLOWED_HOSTS
. Otherwise, your website when accessed will return a 400 bad request
error.
ALLOWED_HOSTS = [
'YOUR_PREVIOUS_LINK',
'LINK_RECENTLY_ADDED',
]
I kept forgetting this, so I thought I might as well leave a memo.
Top comments (0)