[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: RE: ie + ssl + mod_auth_sspi on apache/win32

From: Jens Peters <jpeters7677_at_gmx.de>
Date: 2004-08-14 13:33:15 CEST

> won't websvn still require authentication, and thus fudge up ie?
 
No, you simply have to define two locations in you httpd.conf.
One for WebSVN with SSPIBasicPreferred On and one for SVN without
SSPIBasicPrefered

# WebSVN
<Directory />
    Options FollowSymLinks
    AllowOverride None

        # only authenticated users may access the repository
        Require valid-user

         # how to authenticate a user
        AuthType SSPI
        AuthName "Subversion repositories"
                
        # SSPI settings
        SSPIAuth On
        SSPIAuthoritative On
        # point to domaincontroller
        SSPIDomain ds10domain.ds10.local
        SSPIOfferBasic On
        SSPIBasicPreferred On
</Directory>

# Subversion
<Location /svn>
  DAV svn

  SVNParentPath E:\SVN

  # our access control policy for this repo
  AuthzSVNAccessFile E:\SVN\svn-auth.conf

  # only authenticated users may access the repository
  Require valid-user

  # how to authenticate a user
  AuthType SSPI
  AuthName "Subversion repositories"

  # SSPI settings
  SSPIAuth On
  SSPIAuthoritative On
  # point to domaincontroller
  SSPIDomain ds10domain.ds10.local
  SSPIOfferBasic On

</Location>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Sat Aug 14 13:34:06 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.