You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Francisco Gimeno <ki...@kikov.org> on 2004/05/13 20:32:06 UTC

SVNParentPath and Alias

Hi

I'm having a problem with SVNParentPath...
I want to have a VirtualHost filled with SVN repositories. But I want it in 
this way:
repos1 -> http://svn.mysite/repos1
repos2 -> http://svn.mysite/repos2

So, I have used a <Location /> with SVNParentPath...


Well... Now, I have tried to solve the thing when you tried to see the 
Location where the SVNParentPath ( ie: when you access to http://svn.mysite )

First I though that I should override the default "namespace of URI's" with 
Alias directive as follows
--------
<VirtualHost svn.myhost:80>
    DocumentRoot /var/www/svn
    [ fill in the blanks ]
    ...
    Alias /example /var/www/example
    <Location />
        SVNParentPath /var/lib/svn
        [ fill in the blanks ]
        ...
    </Location>
</VirtualHost>
---------

Then, when I try to get http://svn.myhost/example/hi.txt, but it's not found 
altough I have created the file with 'touch /var/www/example/hi.txt'

This will allow me, using the Redirect thing that has been appear in this list 
a lot of times, have a Webpage for / URI.

Any idea, solutions?
Please, don't say: "don't use Location / for SVNParentPath"...
Thx and BR!




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org