For the sake of clarity and full disclosure, I'm pasting the entire
unedited apache config here, in the state which gives the desired behavior
and no startup errors. I was hoping to spare you the gory details because
it is a lot to look at but hopefully it will help us get to the bottom of
what's going on.
LoadModule wsgi_module modules/mod_wsgi.so
<VirtualHost *:80>
ServerName di-gc-01.devint.animationmentor.com
WSGIDaemonProcess taccit_controller_prod processes=4 threads=2
display-name=httpd-taccit-controller_prod
python-path=/am/apps/client/common/prod/modules/python:/am/apps/client/cmclient/prod/modules/python:/am/apps/slp/common/prod/modules/python:/am/apps/slp/taccit/prod/courses_model
python-home=/am/apps/other/python/2.6.6/Linux.x86_64
WSGIScriptAlias /taccit_controller
/am/apps/slp/taccit/prod/courses_controller/main.wsgi
process-group=taccit_controller_prod
<Directory /am/apps/slp/taccit/prod>
Order allow,deny
Allow from all
</Directory>
WSGIDaemonProcess task_scheduler_prod processes=4 threads=2
display-name=httpd-task-scheduler_prod
python-path=/am/apps/slp/look_and_feel/prod
python-home=/am/apps/other/python/2.6.6/Linux.x86_64
WSGIScriptAlias /task_scheduler
/am/apps/slp/task_scheduler/prod/main.wsgi process-group=task_scheduler_prod
<Directory /am/apps/slp/task_scheduler/prod>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:8088>
ServerName di-gc-01.devint.animationmentor.com
WSGIDaemonProcess taccit_controller_test processes=4 threads=2
display-name=httpd-taccit-controller_test
python-path=/am/apps/client/common/test/modules/python:/am/apps/client/cmclient/test/modules/python:/am/apps/slp/common/test/modules/python:/am/apps/slp/taccit/test/courses_model
python-home=/am/apps/other/python/2.6.6/Linux.x86_64
WSGIScriptAlias /taccit_controller
/am/apps/slp/taccit/test/courses_controller/main.wsgi
process-group=taccit_controller_test
<Directory /am/apps/slp/taccit/test>
Order allow,deny
Allow from all
</Directory>
WSGIDaemonProcess task_scheduler_test processes=4 threads=2
display-name=httpd-task-scheduler_test
python-path=/am/apps/slp/look_and_feel/test
python-home=/am/apps/other/python/2.6.6/Linux.x86_64
WSGIScriptAlias /task_scheduler
/am/apps/slp/task_scheduler/test/main.wsgi process-group=task_scheduler_test
<Directory /am/apps/slp/task_scheduler/test>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
--
You received this message because you are subscribed to the Google Groups
"modwsgi" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/modwsgi.
For more options, visit https://groups.google.com/groups/opt_out.