Displaying 1 result from an estimated 1 matches for "ntlmtest".
Did you mean:
ntlm_test
2007 Oct 17
0
svn access via apache with ntlm authentication
...separately !
Apache serves documents,
svn works for anonymous access with the following config :
<Location /svn/repos>
DAV svn
SVNPath /mnt/data/rep/svn
</Location /svn/repos>
I can check out projects from the repository
Then I've tested the NTLM authentication with
Alias /ntlmtest/ "/mnt/data/docuwiki/"
<Directory "/mnt/data/docuwiki">
AuthName "NTLM Authentication"
NTLMAuth on
NTLMAuthHelper "/usr/bin/ntlm_auth --helper-protocol=squid-2.5-ntlmssp"
NTLMBasicAuthoritative on
AuthType NTLM
require valid-user
</Directory>...