[modwsgi] Re: mod_wsgi and apache on windows

2011-04-28 Thread Graham Dumpleton
Please use the mod_wsgi mailing list, don't mail me directly. Ensure you use reply-all to this email to ensure followups go back to the mailing list. First though go watch: http://code.google.com/p/modwsgi/wiki/WhereToGetHelp?tm=6#Conference_Presentations It talks about reasons for permissions

[modwsgi] extra threads per process

2011-04-28 Thread Brian D
Using Apache 2.2.14, mod_wsgi 3.3, and WSGIDaemonProcess name processes=2 threads=1 etc, I've noticed that there are actually 3 threads running in each mod_wsgi process, 4 if you count the main thread. Does anyone know what these extra threads are for? Brian -- You received this message

Re: [modwsgi] extra threads per process

2011-04-28 Thread Carl Nobile
I haven't actually given this any thought before, but my best bet is that they are there so the process has something to clone when creating a new thread after killing an old thread. There is always a main thread sitting around also which would explain the (threads +1) * num processes + 1 threads

[modwsgi] WSGIAccessScript

2011-04-28 Thread Massimo Di Pierro
Hello Graham, I have been using this: http://code.google.com/p/modwsgi/wiki/AccessControlMechanisms specifically: Host Access Controls The authentication provider and group authorisation features help to control access based on the identity of a user. Using mod_wsgi 2.0 it is also possible to

Re: [modwsgi] WSGIAccessScript

2011-04-28 Thread Graham Dumpleton
On 29 April 2011 07:49, Massimo Di Pierro massimo.dipie...@gmail.com wrote: Hello Graham, I have been using this: http://code.google.com/p/modwsgi/wiki/AccessControlMechanisms specifically: Host Access Controls The authentication provider and group authorisation features help to control

[modwsgi] Invalid command 'WSGIScriptAlias', perhaps misspelled or defined by a module not included in the server configuration

2011-04-28 Thread tan3
Hi, I installed apache2 and mod-wsgi in ubuntu. I even entered the config details for WSGI in defualt of apache2 Alias /media/ /home/nagaraj/ghar/templates/media/ Directory /home/nagaraj/ghar/templates/media Order deny,allow Allow from all /Directory

Re: [modwsgi] Invalid command 'WSGIScriptAlias', perhaps misspelled or defined by a module not included in the server configuration

2011-04-28 Thread Graham Dumpleton
You are missing the line: LoadModule wsgi_module modules/mod_wsgi.so (modified as appropriate for your installation). You don't say how you installed mod_wsgi, from source code or binary OS package. If from source you need to add it by hand. If from a binary OS package you generally use the