Hi Olemis,

Thanks for your reply the fastcgi example really does not clear up much, but I do appreciate the effort. The example you provided is really close to what I have, minus the fastcgi vs mod_wsgi differences.

The documentation I am referring to is visible on the two links below:

TracModWSGI <http://trac.edgewall.org/wiki/TracModWSGI>
http://code.google.com/p/modwsgi/wiki/IntegrationWithTrac

Both of these, while helpful, really don't seem to be working for me, even if I combine the two different methods, or mix and match. I'm simply at a loss as to what I could be missing, or misinterpreting in order to get it to work.

On 7/16/2010 2:40 PM, Olemis Lang wrote:
On Fri, Jul 16, 2010 at 9:18 AM, Chris Bowlby<[email protected]>  wrote:
Hi Guys,

:)

I'm in the process of setting up a trac site, mainly to get the experience
on doing so, and because I've always been curios about trac and it's ability
to interface with subversion.

JFYI ... it supports other VCS e.g. Mercurial, Git , Perforce , ...
and many extensions listed @ trac-hacks.org

I use FreeBSD 8.0,

[...]
I know trac itself is configured correctly, because if I use:

tracd -p 8000 /usr/local/www/myproj/

I can browse to it, with out issue, this leads me to believe something is
wrong with the apache configuration.
AFAICS you're using a Directory directive in httpd.conf . One of my
conf looks like this (FastCGI ;o)

{{{
#!httpd.conf

Alias /trac/chrome/common  /var/lib/trac/.deploy/htdocs/common/
<Directory "/var/lib/trac/.deploy/htdocs/common/">
   Order allow,deny
   Allow from all
</Directory>

Alias /trac/chrome/pydoc  /var/lib/trac/.deploy/htdocs/pydoc/
<Directory "/var/lib/trac/.deploy/htdocs/pydoc/">
   Order allow,deny
   Allow from all
</Directory>

ScriptAlias /trac /var/lib/trac/.deploy/cgi-bin/trac.fcgi
<Location "/trac">
   Order allow,deny
   Allow from all

AuthType Basic
AuthName "trac"
AuthBasicProvider "ldap"
AuthLDAPURL 
"ldap://myserver.com:3268/DC=myserver,DC=com?sAMAccountName?sub?(objectClass=user)"
AuthLDAPBindDN       [email protected]
AuthLDAPBindPassword "canhurtyoureyes"
require valid-user

</Location>
}}}

... the AuthX are mainly to connect the auth with the MS AD , so
you'll have to adapt few things ;o)

I know I have to be missing something, but the documentation is not
completely clear as to what that might be and any help would be appreciated.

What documentation ? This one [1]_ or the one in your environment ?
;o)

+1 for adding the pages @ [1]_ about Apache config et al. to the
package's TracGuide

.. [1] TitleIndex – The Trac Project
          (http://trac.edgewall.org/wiki/TitleIndex)


--
You received this message because you are subscribed to the Google Groups "Trac 
Users" 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/trac-users?hl=en.

Reply via email to