I have a django app setup in /usr/local/appname and it is configured using
mod_wsgi and the following virtual host:
<VirtualHost *:80> WSGIScriptAlias /
/usr/local/appnameenv/appname/appname.wsgi WSGIDaemonProcess appname
user=app group=app Alias /static/ /usr/local/appnameenv/appname/static/
<Directory /usr/local/appnameenv/appnameenv> WSGIProcessGroup appname
WSGIApplicationGroup %{GLOBAL} Order deny,allow Allow from all </Directory>
</VirtualHost>
And here is the wsgi file:
import os, sys
import site
APPNAME_ENV_DIR = '/usr/local/appnameenv'
# Use site to load the site-packages directory of our virtualenv
site.addsitedir(os.path.join(APPNAME_ENV_DIR,
'lib/python2.6/site-packages'))
# Make sure we have the virtualenv and the Django app itself added to our
path
sys.path.append(APPNAME_ENV_DIR)
sys.path.append(os.path.join(APPNAME_ENV_DIR, 'appname'))
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
This app needs to read/write data to /var/www/repo
Currently, the permissions on /var/www/repo looks like this:
4 drxwrxw--- 7 app
If I su to the 'app' service account, I can create/delete files inside of
/var/www/repo just fine. When I use the built in django dev server, it can
read/write to the files in /var/www/repo as expected.
When the app is running via mod_wsgi, I get the following exception:
Exception Value:
[Errno 13] Permission denied: '/var/www/repo/catalogs'
Suggestions?
Thanks,
Nate
--
You received this message because you are subscribed to the Google Groups
"modwsgi" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/modwsgi/-/bIPQ9LsiKlIJ.
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.