Is there such module for FreeBSD? My repository is on FreeBSD however I
would like to use windows AD auth for the authentication piece.
Thanks,
Sam
> Hello,
> Windows authentication with subversion using SSPI module is working now.
>
> I used the mod_auth_sspi.so module from the TortoiseSVN website.
>
> mod_auth_sspi.so
> http://sourceforge.net/projects/mod-auth-sspi/
>
> I had to setup subversion location in apache httpd configuration file.
>
> Location /Rep>
> DAV svn
> SVNParentPath C:/SVN/Rep
>
> AuthName "Subversion Rep repository"
> AuthType SSPI
> SSPIAuth On
> SSPIAuthoritative On
> SSPIDomain DOMAIN
> SSPIOfferBasic On
> Require valid-user
>
> AuthzSVNAccessFile C:/SVN//Rep/auth.txt
> </Location>
>
> Next, I had to setup subversion access file i.e., auth.txt
>
> [groups]
> access = DOMAIN\USERNAME, username
> [/]
>
> @access = rw
>
> *Note:* use two login names - one with and one without the domain.
> Subversion requires the former and the web browser requires the latter.
>
> Thank you.
>
Received on 2008-05-22 21:30:39 CEST