I am mostly looking for clarification here since nothing I read in the docs specifically says you can't mix embedded and daemon modes, although there is an implied either or which seems to be backed up by empirical testing.
Which leads me to wonder whether it's possible and I've misconfigured my server, or whether it's not possible. Here is what I'm trying to do in the main server section of the apache configuration. In this scenario lets assume virtual hosts are discouraged. This configuration starts fine, and all urls are reachable, but the only processes that are used are the ones defined under the DaemonProcess directive (as determined by ps and looking at the CPU time) I'm using httpd-2.2.20 in prefork mode mod_wsgi-3.3 config snippet ... User nobody ... #Serve the first application under a separate user WSGIDaemonProcess app user=admin processes=3 threads=1 WSGIScriptAlias /app/ /var/www/wsgi-scripts/pastedeploy-app.wsgi WSGIProcessGroup app #Then serve everything else using embedded mode. WSGIScriptAlias / /var/www/wsgi-scripts/pastedeploy.wsgi <Directory /var/www/wsgi-scripts> Order allow,deny Allow from all </Directory> A definitive answer would be most welcome, let me know if you need more information. -Jonathan -- You received this message because you are subscribed to the Google Groups "modwsgi" group. 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.
