403 Forbidden error with Django and mod_wsgi

前端 未结 5 811
梦谈多话
梦谈多话 2020-12-09 07:52

I created Django project in home directory so it is in home directory.

Setup

Django Verison  : 1.5.1
Python Version  : 2.7.5
mod_wsg         


        
5条回答
  •  -上瘾入骨i
    2020-12-09 08:53

    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.

    
    
      Order deny,allow
      Allow from all
      Require all granted
    
    
    

提交回复
热议问题