For anyone following this thread I thought I wound summarize the config
that is working
Outside of any virtualhost
WSGIPythonEggs /var/www/pyeggs
WSGISocketPrefix /var/run/wsgi (I needed this because I am running CentOS
with SE Linux enabled)
<VirtualHost *:80>
ServerAdmin
DocumentRoot
ServerName
ErrorLog
CustomLog
WSGIDaemonProcess flax user=apache group=apache threads=25
WSGIScriptAlias /flax /var/www/trac/projects/flax/cgi-bin/trac.wsgi
<Directory /var/www/trac/projects/flax/cgi-bin>
WSGIProcessGroup flax
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
WSGIDaemonProcess greenstone.org user=apache group=apache threads=25
WSGIScriptAlias /greenstone.org /var/www/trac/projects/
greenstone.org/cgi-bin/trac.wsgi
<Directory /var/www/trac/projects/greenstone.org/cgi-bin>
WSGIProcessGroup greenstone.org
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
WSGIDaemonProcess greenstone user=apache group=apache threads=25
WSGIScriptAlias / /var/www/trac/projects/greenstone/cgi-bin/trac.wsgi
<Directory /var/www/trac/projects/greenstone/cgi-bin>
WSGIProcessGroup greenstone
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
<LocationMatch /login$>
AuthType Basic
AuthName "Greenstone Developers"
# Require valid-user
Require group {my group}
</LocationMatch>
--
You received this message because you are subscribed to the Google Groups "Trac
Users" 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/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.