Definitely. The following code snippet mounts two subdirectories off of the
main to the same set of repositories, but uses sspi for one and basic auth
for another. Follow the instructions in the Tortoise docs for creating the
passwd file with the Apache tools.
# this mounts it using basic authentication
<Location /svn>
DAV svn
SVNParentPath C:\SVN
AuthzSVNAccessFile C:\SVN\test\conf\SVNAccess.conf
AuthType Basic
AuthName "Subversion repositories"
AuthUserFile passwd
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
</Location>
#this mounts using sspi auth
<Location /auth>
DAV svn
SVNParentPath C:\SVN
AuthzSVNAccessFile C:\SVN\test\conf\SVNAccess.conf
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIDomain <domaincontroller>
SSPIOfferBasic On
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
</Location>
On 5/24/05, Will Etson <Will.Etson@pgn.com> wrote:
>
> Hi,
>
> I hope this is the correct place to send this. I've successfully
> configured Apache for windows to use mod_auth_sspi and mod_authz_svn.
> However not all our users are windows domain users. For automated jobs
> we'd like to use basic auth with a passwd file to access the same
> subversion repository. Has any one done this? Can I get a snippet of
> their httpd.conf? AuthAuthoritative seems key to this config.
>
> If this is the wrong place can some one point me in the right
> direction?
>
> Thanks,
>
> Will Etson
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tortoisesvn.tigris.org
> For additional commands, e-mail: dev-help@tortoisesvn.tigris.org
>
>
Received on Wed May 25 03:48:52 2005