unfortunately for many not having sspi means the server cannot be deployed due to policies against saving credentials
the following settings in httpd-custom.conf are what we used to enable sspi. I remember getting the sspi mod from a sourceforge page - not sure if any of the others were custom added to visual svn server: LoadModule sspi_auth_module bin/mod_auth_sspi.so LoadModule auth_digest_module bin/mod_auth_digest.so LoadModule authz_svn_module bin/mod_authz_svn.so <Location /sspi/> DAV svn SVNListParentPath on SVNParentPath "D:/Repositories/" SVNIndexXSLT "/svnindex.xsl" SVNPathAuthz on AuthzSVNAccessFile "D:/Repositories/authz" AuthName "SSPI SVN" AuthType SSPI SSPIAuth on SSPIAuthoritative on SSPIDomain MY_DOMAIN_HERE SSPIOmitDomain on SSPIUsernameCase lower SSPIPerRequestAuth off SSPIOfferBasic off require valid-user </Location>

