Tagged Questions
1
vote
1answer
146 views
Should I use mod_wsgi embedded mode if I have full control of Apache?
I'm managing a bunch of sites and applications in a shared hosting, using Django via mod_wsgi. I had planned to use daemon mode from the beginning (to avoid restart problems), but ended up purchasing ...
1
vote
1answer
202 views
A WSGI-configured Apache does not serve images from /static or /media (Django), returns 403
I have set up an Apache server with WSGI/Django on it, and everything works fine -- html, css -- but when I try to request an image file, like png, it returns 403 Forbidden. The configuration is as ...
2
votes
1answer
252 views
Opening up a static url when using Passenger WSGI with Django?
I'm currently developing a site hosted on dreamhost, using django, which is served up through passenge wsgi.
Right now, all requests are being passed to the django app. I'd like to be able to serve ...
0
votes
0answers
362 views
speeding up django server [closed]
My setup is django 1.3 and the default mod_wsgi and apache packages for ubuntu 10.04. I tested one view of my app on my development VM (DEBUG and debugging toolbar off):
ab -n 200 -c 5 ...