I can't seem to get anything but 403 Forbidden to show up when using
mod_wsgi. I've found several places where this issue has been
addressed, tried all the solutions, but no luck.
I checked apache to make sure mod_wsgi is installed and loaded and it
is.
I've created this file:
/apps/hello.wsgi
I gave the directory and the file a whole bunch of different
permissions combinations, 744, 777, etc. with the same result.
This is what I have in my httpd.conf file currently, although I've
tried just about every combination I could think of:
<Directory "/apps">
Order deny,allow
Allow from all
</Directory>
NameVirtualHost *:80
<VirtualHost *:80>
WSGIScriptAlias / /apps/hello.wsgi
</VirtualHost>
Any help would be appreciated.
Thanks,
Ben
--
You received this message because you are subscribed to the Google Groups
"modwsgi" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/modwsgi?hl=en.