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

Re: setting up apache/SVN/DAV...

From: François Beausoleil <fbeausoleil_at_ftml.net>
Date: 2005-04-19 19:24:49 CEST

Hello Bruce,

This is a strictly user-side E-Mail, so I removed dev@ from the reply.

bruce said the following on 2005-04-19 12:54:
> hi...
>
> in setting up the apache htpd.conf file, i have
>
> <VirtualHost 192.168.1.52:80>
> ServerName foo.com
> <Location /forge>
> DAV svn
> SVNPath /gforge-svn/forge <<<<<<<???????????????
> </Location>
> </VirtualHost>
>
> i can do a cmd line 'svn list /gforge-svn/forge/svn'

Unless there's something more, that command should have failed. You
would need to put in a scheme, for instance. Something like
"file:///gforge-svn/forge/svn".

> my question, what should i have on the SVNPath???

This is the physical location of your repository - the location you gave
"svnadmin create" originally.

> i want to be able to setup the TortoiseSVN client to access the SVN
> repository.

This is all explained in
     http://svnbook.red-bean.com/en/1.1/ch05s02.html
and
     http://svnbook.red-bean.com/en/1.1/ch06s04.html

Here's a part of my httpd.conf:

<VirtualHost *>
   ServerName svn.teksol.info
   DocumentRoot D:/svn/wwwroot

   <Location /repos>
       DAV svn
       SVNPath "D:/svn/repos"
   </Location>
</VirtualHost>

Enjoy,
François

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Apr 19 19:26:49 2005

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.