From b894accf5c23cef90974ee9a5686cfb0d7a28c1b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 13 Jun 2012 18:43:31 +0200 Subject: reorg repo --- auth_ntlm_winbind.conf | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 auth_ntlm_winbind.conf (limited to 'auth_ntlm_winbind.conf') diff --git a/auth_ntlm_winbind.conf b/auth_ntlm_winbind.conf new file mode 100644 index 0000000..0dcf182 --- /dev/null +++ b/auth_ntlm_winbind.conf @@ -0,0 +1,44 @@ +# +# mod_auth_ntlm_winbind allows authentication and authorisation over the Web +# against a Windows NT/AD domain controllers, using Samba on the same +# machine Apache is running on. +# It uses "ntlm_auth" helper utility to operate with local winbindd(8) daemon, +# which are standard parts of the Samba distribution. +# +# The same way Squid does NTLM authentication now. +# + +LoadModule auth_ntlm_winbind_module modules/mod_auth_ntlm_winbind.so + +# +# Make sure you have "KeepAlive On" in your Apache configuration, +# else this module will not work! +# + +# +# example configuration for this module: +# +# +# AuthName "NTLM Authentication thingy" +# NTLMAuth on +# NTLMAuthHelper "/usr/bin/ntlm_auth --helper-protocol=squid-2.5-ntlmssp" +# NTLMBasicAuthoritative on +# AuthType NTLM +# require valid-user +# +# +# to enable 'Negotiate' authentication too: +# +# +# AuthName "NTLM Authentication thingy" +# NTLMAuth on +# NegotiateAuth on +# NTLMAuthHelper "/usr/bin/ntlm_auth --helper-protocol=squid-2.5-ntlmssp" +# NegotiateAuthHelper "/usr/bin/ntlm_auth --helper-protocol=gss-spnego" +# NTLMBasicAuthoritative on +# AuthType NTLM +# AuthType Negotiate +# require valid-user +# +# + -- cgit