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

Questions abou SVN + Apache

From: Roberto <smuxbr_at_gmail.com>
Date: Mon, 12 Jan 2009 16:32:03 -0400

Hi all,

In my multiples repositories I have my repo private and I set this directive
global in my httpd.conf :

RewriteEngine On

RewriteCond %{REQUEST_URI} ^/svn$
RewriteRule .* /svn/ [PT]

<Location /svn>
       DAV svn
       SVNParentPath /svn/repos

       # Limit write permission to list of valid users.
       <LimitExcept GET PROPFIND OPTIONS REPORT>
             AuthType Basic
             AuthName "Subversion"
             AuthUserFile /svn/authfiles/svn-htpasswd
             AuthzSVNAccessFile /svn/authfiles/svn-access.conf
             Require valid-user
       </LimitExcept>
</Location>

and set my private repository:

<LocationMatch /svn/myprivaterepo/>
             AuthType Basic
             AuthName "SVN Private"
             AuthUserFile /svn/authfiles/svn-htpasswd
             AuthzSVNAccessFile /svn/authfiles/svn-access.conf
             Require user Smux
</LocationMatch>

When I get files on my repository this works fine, but when I import any
files show this error:

[Mon Dec 22 20:09:19 2008] [error] [client xxx] The URI does not contain the
name of a repository. [403, #190001]
[Mon Dec 22 20:11:12 2008] [error] [client xxx] Access denied: 'Smux' GET
svn:/myprivaterepo

How can I fix this?

Thanks in advance.
Received on 2009-01-13 14:07:36 CET

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.