I attempt for everyone my Django application with Apache-mod_wsgi during my local computer whose OS is Home windows 7.
I've placed my django.wsgi file into proper place and alter httpd.conf so that WSGIScriptAlias / C:\DjangoProjects\tryserver\Apache\django.wsgi
.
However, after i attempt to achieve http://127.0.0.1
, experienced You don't have permission to access / on this server.
message.
I've checked out my access.log
and I've discovered both of these lines
127.0.0.1 - - [30/Jun/2011:22:36:50 +0300] "GET / HTTP/1.1" 403 202
127.0.0.1 - - [30/Jun/2011:22:37:50 +0300] "\x16\x03" 302 222
What's the concept of these logs and just how can one resolve them ?
Thanks
Adding wrinkles to httpd.conf
resolved my problem.
<Directory C:/DjangoProjects/tryserver/Apache>
Order deny,allow
Allow from all
</Directory>