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

Re: Apache2 on linux "DAV svn"

From: Milen A. Radev <milen_at_radev.net>
Date: 2006-10-16 13:50:13 CEST

On 16/10/06, David Bo Jensen <dbj@elektronik.dk> wrote:
> I have search the internet for an example with
> TortoiseSVN on Windows XP and a linux server running Apache2 with something
> like this
>
> Alias /svnm /root/svn/test
> <Location /svnm>
> DAV svn
> SVNListParentPath on
> SVNParentPath /root/svn
> SVNAutoVersioning on
> AuthType basic
> AuthName "subversion"
> AuthUserFile /etc/svn-passwd
> Require valid-user
> </Location>
>
>
> in a VirtualHost.
> I simply cannot make it work.
>
> Has anybody succeeded with any subversion windows client and a linux Apache2
> server with mod_dav_svn?

Here is mine:

Alias /styles/ "/usr/local/apache2/styles/"

<Location /svn>
  DAV svn
  SVNParentPath /home/svn
  SVNIndexXSLT "/styles/svnindex.xsl"
  AuthType Basic
  AuthName "Subversion Repositories"
  AuthUserFile /home/svn/users.htpasswd
  Require valid-user
</Location>

The Apache is 2.0.59 and the SVN is 1.4.0 but it works configured like
that since SVN 1.0.x, i.e. more than 2 years.
I believe the alias "/svnm" you define is superfluous and may be
harmful in this case (I'm not an Apache admin).

But please ask your question on the SVN user mailing list - there are
more people there who are familiar with this stuff.

-- 
Milen A. Radev
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: users-help@tortoisesvn.tigris.org
Received on Mon Oct 16 13:50:29 2006

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

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