[Answer]-Django + wsgi = Forbidden 403

1👍

In your settings.py, your allowed hosts are empty. You should complete as following :

ALLOWED_HOSTS = ['www.talkrecorder.ru', 'talkrecorder.ru'] #Or any other host that you need

Leave a comment