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

Re: cmd line stuff (was: CVS update: ...)

From: Greg Stein <gstein_at_lyra.org>
Date: 2000-10-18 11:28:28 CEST

On Tue, Oct 17, 2000 at 11:56:09AM -0500, Karl Fogel wrote:
>...
> Am worried about using "http://" URLs, because what if your repository
> and project home page are on the same server, but you want to call
> them by the same name (say, `comp-tools'). Then does
>
> http://www.mydomain.org/comp-tools
>
> refer to the home page or the top of your repository? Or perhaps the
> web server is configured to point certain names at corresponding
> repositories, like:
>
> http://www.mydomain.org/myrepos/comp-tools
>
> And httpd.conf has something like
>
> SubversionAlias myrepos /usr/share/svn/repositories/my_public_repos
>
> or whatever. That might work out okay, yeah.

URLs will take the form of your second example. Repositories are placed
where the adminstrator wants. (i.e. they don't just "appear" under the root
space of a host)

httpd.conf will actually look something like:

<Location /myrepos/comp-tools>
  DAV svn
  SVNPath /usr/share/svn/repositories/my_public_repos
  # auth info goes here
  <Limit ... some methods>
     Require group devguys
  </Limit>
</Location>

Cheers,
-g

-- 
Greg Stein, http://www.lyra.org/
Received on Sat Oct 21 14:36:11 2006

This is an archived mail posted to the Subversion Dev mailing list.

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