Alright, so i am following this tutorial. When i try to access my site through my local server i get this peculiar error:
Forbidden
You don\'t have per
If this is exactly your config file then i doubt the path that you're using is wrong. Please fix that first.
Set WSGIScriptAlias this to correct path.
Then your WSGI file must look something like:
import os
import sys
os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()