[Fixed]-How to hide herokuapp.com site built in Django when the site is live

1👍

In order to hide

example.herokuapp.com

from the django live site

example.com

set

ALLOWED_HOSTS=['example.com']

For polishing the website to the top detail, create beautiful custom 500.html template.

👤Radek

Leave a comment