Hello Trac-users

I am configuring a fresh install of Trac on Ubuntu 8.04. I wrote
http://trac.edgewall.org/wiki/Trac0.11OnUbuntuHardy while configuring
it, and then used mod_wsgi to speed things up. The problem is, I'm
trying to authz_svn to authenticate and, while Apache does grant me
access to the pages, Trac (apparently) thinks I'm an anonymous user.

On trac.log I see a log of lines similar to:
2008-06-06 19:58:04,558 Trac[perm] DEBUG: No policy allowed anonymous
performing WIKI_MODIFY on <Resource u'wiki:WikiStart'>

I have read/write access to SVN through webdav, though. Any help would
be greatly appreciated.

A little more detailed info on my config:

--- Apache configuration snippet ---
WSGIScriptAlias /trac /usr/lib/cgi-bin/trac.wsgi

<LocationMatch "/trac*">
  SVNPath       /boreste/svn
  AuthType Basic
  AuthName "Boreste Trac"
  AuthUserFile /etc/apache2/dav_svn.passwd
  AuthzSVNAccessFile /etc/apache2/authz_svn.access
  Require valid-user
</LocationMatch>

<Location /svn>
  DAV svn
  SVNPath /boreste/svn
  SVNListParentPath Off

  AuthType Basic
  AuthName "Subversion Repository"
  AuthUserFile /etc/apache2/dav_svn.passwd
  AuthzSVNAccessFile /etc/apache2/authz_svn.access
  Require valid-user
</Location>
----------------

--- Authz SVN access file ---
[groups]
techno=carlos

[/]
* =
@techno = rw

[svn:/]
* =
@techno = rw
----------------

--- trac.ini excerpt ----
[trac]
authz_file = /etc/apache2/authz_svn.access
authz_module_name =
check_auth_ip = false
ignore_auth_case = true
database = postgres://trac:@/trac?schema=test
repository_dir = /boreste/svn/test
------------


-- 
Carlos Vieira
Boreste Embedded Systems - www.boreste.com

--~--~---------~--~----~------------~-------~--~----~
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