Hi,
sorry for my previous mail saw that you solved the problem...!
About this question, in case it wasn't answered already too!
From your previous mails, I understood that 'ath' is a directory in your
repository. In that case, you cannot expose only that directory within the
repos. You'd have to make a new repository 'ath' and point the <Location> to
that.
--Tim
-----Original Message-----
From: Robo [mailto:robo555@gmx.net]
Sent: zondag 1 december 2002 11:59
To: dev@subversion.tigris.org
Subject: Re: How to install mod_dav_svn on Windows?
Got the problem solved now, had to change this line:
LoadModule dav_module modules/mod_dav_svn.so
to this:
LoadModule dav_svn_module modules/mod_dav_svn.so
Which would make sense...
But now there's another problem, svn does not like it when I have the
Location block like:
<Location "/svn/ath">
DAV svn
SVNPath "E:/svn/ath"
AuthType Basic
AuthName "Subversion repository"
AuthUserFile "E:/htpasswd/password"
Require valid-user
</Location>
Where ath is the repository I want to have access over the network. If I go
to http://localhost:8080/svn/ath I get a HTTP 500 Internal server error, if
I go to http://localhost:8080/svn/ath/ I get a message saying "Expected
version '1' of repository; found no version at all; is `E:/svn/ath' a valid
repository path?"
The only way I've found so far to make it work is:
<Location "/svn">
DAV svn
SVNPath "E:/svn"
AuthType Basic
AuthName "Subversion repository"
AuthUserFile "E:/htpasswd/password"
Require valid-user
</Location>
That allows me to access the ath repository, but of course that also exposes
my other repositories, which I don't want.
Robo
----- Original Message -----
From: "Branko Čibej" <brane@xbc.nu>
To: "Robo" <robo555@gmx.net>
Cc: <dev@subversion.tigris.org>
Sent: Sunday, December 01, 2002 3:13 PM
Subject: Re: How to install mod_dav_svn on Windows?
> Robo wrote:
>
> >mod_dav.svn.so was the last item in the LoadModule list, so it would have
> >been after mod_dav.so
> >
> >Gave a warning about module already loaded, then crash on starting when
the
> ><Location> tag was added.
> >
> >
> The only time I saw something similar was when I had two LoadModule
> limes for mod_dav_svn.so or mod_dav.so.
>
> --
> Brane Čibej <brane_at_xbc.nu> http://www.xbc.nu/brane/
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org
>
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Dec 2 10:44:01 2002