Hello,

I am trying to setup a trac server using LDAP for user
authentication.  Ideally, any user ("anonymous") should be able to get
access to the front page of trac and if required, the user would be
prompted for a password.  So far, I have been able to use our LDAP
server but now, any access to our TRAC server requires an LDAP user/
password.  I am obviously doing something wrong and some help/pointer
would be welcome.

Some details:
Ubuntu 8.04
Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6 mod_python/3.3.1 Python/2.5.2
mod_ssl/2.2.8 OpenSSL/0.9.8g
Trac 0.11.2.1

My apache conf file looks like:

<Location /cisst>
  # Trac configuration
  SetHandler mod_python
  PythonInterpreter main_interpreter
  PythonHandler trac.web.modpython_frontend
  PythonOption TracEnv /goliath/trac/cisst
  PythonOption TracUriRoot /cisst

  # trac settings
  AuthType Basic
  AuthName "cisst Trac"
  SSLRequireSSL

  AuthBasicProvider ldap
  AuthLDAPBindDN CN=....
  AuthLDAPBindPassword ....
  AuthLDAPURL "ldap://..../";
  AuthzLDAPAuthoritative on
  AuthLDAPCompareDNOnServer on
  Require valid-user

  # group settings
  Require ldap-group CN=.....

</Location>


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to