LocationMatch and DAV svn

Posted by Homes2001 on Stack Overflow See other posts from Stack Overflow or by Homes2001
Published on 2009-03-20T11:45:46Z Indexed on 2010/03/13 9:45 UTC
Read the original article Hit count: 307

Filed under:
|
|
|
|

Hi,

I am trying to make our subversion repository accessible via multiple URLs. To do so, I was thinking to use the LocationMatch directive. My configuration is:

<Location ~ "/(svn|repository)">
  DAV svn
  SVNPath /opt/svn
  AuthzSVNAccessFile /etc/subversion/access
</Location>

The above configuration does NOT work ... Strange thing is that if i use for example this configuration, it works well for both URLs:

<Location ~ "/(svn|repository)">
  SetHandler server-status
</Location>

For me it looks like the combination of DAV svn and LocationMatch does not really work... or am I doing something wrong here?

© Stack Overflow or respective owner

Related posts about svn

Related posts about apache