Ryan Schmidt a écrit :
>>
>>
>> /svnroot is the folder where template1 folder is on the server.
>>
>> Perhaps I've had to add "svn." to the line "<VirtualHost
>> <server_name>:443>"
>> Perhaps Something is missing to use these lines while the client access
>> to the /svn path on the http server ?
>>
>> I don't know much how to configure apache yet.
>
>
> Show us your entire VirtualHost directive for this virtual host.
> Excluding any SSL directives, it should look something like this:
>
> <VirtualHost *:443>
> ServerName svn.example.org
> # the document root should NOT be your /svnroot
> # this would be the directory where you put your favicon.ico,
> robots.txt,
> # any stylesheet files, icon images and similar things
> DocumentRoot /somewhere
> <Location /svn/>
> DAV svn
> SVNParentPath /svnroot
> SVNListParentPath on
> SVNPathAuthz off
> #SVNIndexXSLT /index.xslt
> AuthType Basic
> AuthName "Example Repositories"
> AuthUserFile /path/to/usersfile
> Require valid-user
> </Location>
> </VirtualHost>
>
>
Thanks for your answer.
According to your example, my directive is completly wrong. in fact I've
tried to adapt a directive about SCM but it doesn't look like your example.
So I will rewrite my directive with your example and others.
Received on Tue Aug 1 18:02:03 2006