Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Posted this at ServerFault, but I'm hoping a Django ninja can help me out here on SO. I finished the tutorial on Django's site about using mod_wsgi (https://docs.djangoproject.com/en/1.3/howto/deployment/modwsgi/), and having substituted my paths as appropriate, results in a big fat "Permission denied." when I try to access /. Here is the stuff I added to httpd.conf (mod_wsgi is enabled earlier in the conf file):

# Django configuration

WSGIScriptAlias / /usr/local/django/billing/apache/django.wsgi

<Directory /usr/local/django/billing/apache/django.wsgi>
Order allow,deny
Allow from all
</Directory>

AliasMatch ^/([^/]*\.css) /usr/local/wsgi/static/styles/$1

Alias /media/ /usr/local/django/billing/media/
Alias /static/ /usr/local/django/billing/static/

<Directory /usr/local/django/billing/static>
Order deny,allow
Allow from all
</Directory>

<Directory /usr/local/django/billing/media>
Order deny,allow
Allow from all
</Directory>

Edit #1: I've gone through the slides multiple times, from the start: still no joy. Even after opening up the path to the script, chmod'ing every relevant directory to be readable, and chmod'ing the .wsgi script, I still get permission denied. If I change the directory path from /usr/local/django/billing/apache/django.wsgi to have the django.wsgi truncated, the server returns a configuration error, despite that being how it's configured in the slides.

share|improve this question

2 Answers

up vote 2 down vote accepted

I had the same problem with permission denied. http://serverfault.com/questions/357804/apache2-mod-wsgi-django-named-virtual-servers

The specific error is described in: http://code.google.com/p/modwsgi/wiki/WhereToGetHelp?tm=6#Conference_Presentations

share|improve this answer
Thank you for the link! I wont be in a position to test the things in the slideshow until tomorrow, but I will be sure to return with what works and doesn't. – patrickn Feb 21 '12 at 23:53
See my edit above: I am at my wit's end with this issue. Nothing I read seems to mirror my situation. I get a server configuration error when I should be getting a permission denied error on slide #8. Opening the directory to access the script returns a configuration error. I think I'm going nuts. – patrickn Feb 22 '12 at 15:50
Success! Using code.google.com/p/modwsgi/wiki/IntegrationWithDjango, I noticed that they did two sys.path.append commands... one for the root folder containing the django project, and another for the actual project itself (which the slideshow uses)... adding in the root folder to the path solved the problem! – patrickn Feb 22 '12 at 16:09

Not an answer to this problem, but may help others searching like I was...

Same configuration, same environment... but everything was working except a simple call to Popen() in one of my django/python routines...

"Permission denied"

Turned out to be SELINUX (enforcing mode) blocking apache.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.