I'm confused, if you are using SVN and Trac through apache, then you
won't be running an SVN service (svnserve), or a Trac service (tracd).
Only Apache would be running.

If you are using svnserve, then when you set your root (with -r), then
each directory under that is assumed to be the root of a repository.

For example:

mkdir C:\repos

svnadmin create C:\repos\repo1
svnadmin create C:\repos\repo2

svnserve -r c:\repos -d

Then when you access the server, /repo1 and /repo2 will be two roots,
for example svn://localhost/repo1/trunk perhaps may be a possible SVN
URL. Note that repo1 and repo2 are two separate repositories, and not
just two directories inside of the same repository. That is, I don't
think you can svn checkout the root, or do anything like add directories
there.

If you are using Apache to serve your SVN, the setup is different.

If you are running both, then you have a problem because you don't need
both Apache and SVN service.

If you are using Apache, then it works like svnserve where you set up a
root, and you do this with the SVNParentPath variable.

Jason

-----Original Message-----
From: [email protected] [mailto:[EMAIL PROTECTED]
On Behalf Of zwetan
Sent: Friday, September 29, 2006 2:16 PM
To: Trac Users
Subject: [Trac] Re: Multiple Track Sites on one Windows Server



Jason Winnebeck wrote:
> You can serve multiple repositories through the same SVN server --
there
> is no need to have multiple servers and ports, as far as I can see.
>

I really looked hard into the SVN doc to do something like that
but didn't find how to, but always open to learn something new :)
bear in mind that the SVN server is running as a windows service
with SVNservice.exe


> But if you are using Trac and Apache, then you might as well run SVN
> under Apache and DAV as well, to put everything into the same port.
You
> can also share user accounts easily this way.
> 

it's what I'm doing now, hence my previous comment.

cheers,
zwetan

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/trac-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to