403 Forbidden error with Django and mod_wsgi 403 Forbidden error with Django and mod_wsgi python python

403 Forbidden error with Django and mod_wsgi


Apparently this is an issue that is related to Apache 2.4 and older versions.You need to replace in your apache configuration:

Allow from all

with

Require all granted

in the <Files wsgi.py> section


You can use the following:

<Directory /home/aettool/aet/apache>  <IfVersion < 2.3 >   Order allow,deny   Allow from all  </IfVersion>  <IfVersion >= 2.3>   Require all granted  </IfVersion></Directory>


This has been reported in Django ticket 19319:

https://code.djangoproject.com/ticket/19319

Your Apache config now needs the following for your file wsgi.py.

<Directory /path/to/your/wsgi-script><Files wsgi.py>  Order deny,allow  Allow from all  Require all granted</Files></Directory>