You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Adrian Gschwend <ad...@bfh.ch> on 2005/11/25 09:45:19 UTC

Apache2 & SSL: subversion fails with "PROPFIND request failed on..."

Hi all,

I have several subversion servers running without any problems, now I
wanted to migrate a server to https, the config looks like this now:

--
<VirtualHost *:443>     

	DocumentRoot "/usr/local/www"
	ServerName svn.bfh.ch
	SSLEngine On         
	SSLCertificateFile /etc/ssl/certs/svn.pem
         <Location /repos/staff>
                DAV svn
                SVNParentPath /data/svn/staff

                Satisfy Any                 
		Require valid-user
                AuthType Basic                 
		AuthName "BFH Subversion repository" 
		AuthzSVNAccessFile /data/svn/conf/bfh.acl
		AuthUserFile /data/svn/conf/bfh.users
        </Location>

</VirtualHost>
--

this config works fine without ssl, listening on port 80. If I do it like
this I see this request first in the log:

147.87.65.205 - - [25/Nov/2005:10:14:41 +0100] "PROPFIND /repos/staff/gea1 HTTP/1.1" 401 524 "-" "SVN/1.2.3 (r15833) neon/0.24.7"

as soon as I switch to https, it looks like this in the log:

147.87.65.205 - - [25/Nov/2005:10:15:50 +0100] "PROPFIND /repos/staff/gea1
HTTP/1.1" 405 366

and the client says:
--
ktk@borg ~/tmp/svn $ svn checkout --username gea1 https://svn.bfh.ch/repos/staff/gea1
svn: PROPFIND request failed on '/repos/staff/gea1'
svn: PROPFIND of '/repos/staff/gea1': 405 Method Not Allowed (https://svn.bfh.ch)
--

To test SSL itself I created a normal webpage with https and this works
just fine, the certificate is shown properly.

Any hints on what I am doing wrong?

thanks

Adrian
-- 
Adrian Gschwend
System Administrator
Berne University of Applied Sciences
Biel, Switzerland



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