Hi,

Victoria wrote:
> Alias /git "C:\Users\Administrator\BitNami Trac Stack repository"
> <Location /git>
> DAV on
> Options FollowSymLinks Indexes
>    AllowOverride None
>    Order allow,deny
>    Allow from all
> AuthType Basic
> AuthName "git"
> AuthUserFile "C:\Program Files\BitNami Trac Stack\apps\trac/users/htpasswd"
> Require valid-user user
> </Location>

Thanks a lot. With your sent <Location> pattern I was able to make it run with 
SSPI this way:

Alias /git/git-test "C:/gitRepos/git-test"
<Location /git/git-test>
DAV on
Options FollowSymLinks Indexes
    AllowOverride None
    Order allow,deny
    Allow from all

AuthName "git"

AuthType SSPI

SSPIAuth On
SSPIAuthoritative On
SSPIDomain MYDOMAIN
SSPIOmitDomain On
SSPIUsernameCase lower
SSPIOfferBasic on
Require valid-user
AuthUserFile "C:/access.conf"
</Location>

-access.conf ------------------
[groups]
users = me, myself, i

[/]
* =
@users = rw
-------------------------------

But the remaining problem is that access.conf seems to have no effect. Every 
user can login to that Location, not only the 3 configured ones from group 
'users'. Do you have an idea? That file access.conf is a copy from what I've 
previously used as AuthzSVNAccessFile.

CU, F@lk

----
R&D Software
Baumer Optronic GmbH
www.baumer.com





Geschäftsführer: Dr. Albert Schmidt· Dr. Oliver Vietze
Sitz der Gesellschaft: Radeberg
Amtsgericht Dresden: HRB 15379
Ust. ID: DE 189714583


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