[Django]-Configuration problems in azure website for django app

0👍

If you have set DEBUG=False in the settings, then you have to enter your website’s host to the ALLOWES_HOSTS settings.

If you have not done so, you will get errors like the one you mention.

0👍

I suggest that you check out the console data. Right click and open the dev tools from your browser. Make a page request or reload the page. Check the network panel, it should contain the response data in full html which will have the output.

👤IVI

Leave a comment