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

Re: svn: PROPFIND 405 Method Not Allowed

From: Fabien ADAM <id2ndr_at_crocobox.org>
Date: 2006-08-01 18:00:34 CEST

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

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

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