[modwsgi] Using apache for only mod_wsgi

2012-09-27 Thread Jason Garber
Hello, We are using nginx on the front-end to serve static files, and pass only non-static requests through to apache. Furthermore, we are using WSGIScriptAlias / to capture all requests sent to apache and send them to our python framework. Is there a simple way in apache to cause it to

Re: [modwsgi] Multiple Django Instances in same Application Group

2012-09-27 Thread Roshan Mathews
On Mon, Sep 24, 2012 at 5:42 PM, Roshan Mathews rmath...@gmail.com wrote: What I am trying to do, is to understand how mod_wsgi works. I still have some questions, although the documentation is quite fabulous, especially the page on ProcessesAndThreading [2]. In case someone finds this thread

[modwsgi] Re: Using apache for only mod_wsgi

2012-09-27 Thread Gnarlodious
I have a block like this in .htaccess, which makes Python scripts invisible and if somehow they are requested causes error 403 Forbidden: FilesMatch \.(py|pyc)$ Order Allow,Deny Deny from all AddDefaultCharset UTF-8 DefaultLanguage en-US /FilesMatch -- Gnarlie -- You received this