0

I'm basically looking for a way to allow for secure, but password-less authentication to SVN through WebDAV (I would rather not use svn+ssh.) I know this is possible with SSH, is it possible with Apache Authentication too?

Nate Wagar
  • 143
  • 4

1 Answers1

1

Something like this? The page looks pretty old though...

solefald
  • 2,301
  • 15
  • 14
  • That looks like it's just HTTPS where the client already has the certificate. I'm looking for something to identify and authenticate each individual user. – Nate Wagar Apr 22 '10 at 17:04
  • I don't think that would be possible. SSL cert auth is the only way that i know of. – solefald Apr 22 '10 at 17:10
  • @Nate Wagar, by following the above you would issue a unique key and certificate each user. Though I would suggest you use something like TinyCA (http://tinyca.sm-zone.net/) instead of creating all the certs manually. – Zoredache Apr 22 '10 at 17:14
  • See also: http://httpd.apache.org/docs/2.0/ssl/ssl_howto.html#accesscontrol – Zoredache Apr 22 '10 at 17:16