I've been working all afternoon trying to use VisualSVN Server to
duplicate the functionality I have today.

The functionality I'm trying to maintain is anonymous read-only access
to repositories.
Normally connecting anonymously it will give a 401 Authorization
Required message (and prompt for credentials).

Alright, so here's the configuration I have today that works with the
SSPI module:

<Location /svn/>
        DAV svn
        SVNListParentPath on
        SVNParentPath \\\\MYDOMAIN\\Development\\SourceCode\\SVN
        AuthType SSPI
        SSPIAuth On
        SSPIAuthoritative On
        SSPIDomain <domaincontroller>
        # The following line is Required for TortoiseSVN
        SSPIOfferBasic On
        # Allow anonymous read-only access to repositories, but require
authentication for anything else
        <LimitExcept GET PROPFIND OPTIONS REPORT>
                Require group MYDOMAIN\Development
                Require user MYDOMAIN\employee1 MYDOMAIN\employee2 MYDOMAIN
\employee3
        </LimitExcept>
</Location>

And here's my latest attempt to duplicate the functionality with
VisualSVN Server:

<Location /svn/>
  DAV svn

  SVNListParentPath on
  SVNParentPath "//MYDOMAIN/Development/SourceCode/SVN/"
  SVNIndexXSLT "/svnindex.xsl"

  AuthName "Subversion Repositories"
  AuthType VisualSVN
  AuthzVisualSVNAccessFile "//MYDOMAIN/Development/SourceCode/SVN/
authz-windows"
  AuthnVisualSVNBasic on
  AuthnVisualSVNIntegrated off
  AuthnVisualSVNUPN Off

        # Allow anonymous read-only access to repositories, but require
authentication for anything else
        <LimitExcept GET PROPFIND OPTIONS REPORT>
                require valid-user
        </LimitExcept>
</Location>

Which seems like it should work. Except I'm getting a 403 Forbidden
error!
What can I do to get this to work!?

Any help or response (even a "that's not supported in version 2.1.11")
is appreciated!

Thanks!

-Tim

-- 
You received this message because you are subscribed to the Google Groups 
"VisualSVN" 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/visualsvn?hl=en.

Reply via email to