I try to serve my Django application with Apache-mod_wsgi in my local computer whose OS is Windows 7.
I have placed my django.wsgi file into proper place and change httpd.conf such that WSGIScriptAlias / C:\DjangoProjects\tryserver\Apache\django.wsgi .
However, when I try to reach http://127.0.0.1, encountered You don't have permission to access / on this server. message.
I have looked at my access.log and I have found these two 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 is the meaning of these logs and how can I resolve them ?
Thanks
Adding these lines to
httpd.confresolved my problem.