On Mon, Oct 17, 2005 at 08:14:47PM +0200, Ralph Seichter wrote: > I tried to upgrade a SVN repository server Apache installation from > version 2.0.54 to 2.0.55 today, but it seems like Subversion 1.2.3 > (Linux and Windows) can't renegotiate SSL sessions with the new Apache > version. The error message is: > > svn: PROPFIND of '/foobar': Could not read status line: SSL > error: sslv3 alert unexpected message (https://server.tld)
This is a mod_ssl bug. 2.0.54 and earlier did not enforce the "SSLVerifyClient require" in per-location context; 2.0.55 does. But mod_ssl cannot handle an SSL handshake in per-location context if the request includes a message body (such as a PROPFIND). See http://issues.apache.org/bugzilla/show_bug.cgi?id=12355 - you can apply this patch to mod_ssl which should work around it: http://issues.apache.org/bugzilla/attachment.cgi?id=16495 if you do apply this and test it, I'd appreciate it if you could add a note to that bug giving some feedback. Regards, joe _______________________________________________ neon mailing list [email protected] http://mailman.webdav.org/mailman/listinfo/neon
