On Mon, Jun 04, 2012 at 10:02:02AM +0900, Masaru Kitajima wrote:
> And in the /etc/httpd/conf/httpd/conf, the WebDAV is defined as below.
> <IfModule mod_dav_fs.c>
>     # Location of the WebDAV lock database.
>     DAVLockDB /var/lib/svn/dav.lock
> </IfModule>
> <Directory /var/lib/svn>
>     DAV on
> </Directory>

Why did you add the above? I don't think it's necessary. It might even
conflict with Subversion's own DAV handler. Setting SVNAutoversioning on
as you did below should be enough to allow DAV clients to connect to
Subversion. Try removing the above lines from your configuration and
maybe that will fix the problem.

> 
> And in /etc/httpd/conf.d/subversion.conf. I defined as below.
> <Location /svn>
>    DAV svn
>    SVNParentPath /var/lib/svn
>    SVNAutoversioning on
>    <LimitExcept GET PROPFIND OPTIONS REPORT>
>       # Require SSL connection for password protection.
>       # SSLRequireSSL
> 
>       AuthType Basic
>       AuthName "Authorization Realm"
>       AuthUserFile /etc/httpd/conf.d/svn_auth
>       Require valid-user
>    </LimitExcept>
> </Location>
> 
> Then I restarted the httpd and tried to connect via client,
> but the result was same. Still cannot connect.

Reply via email to