# Original source by: Andreas Gal <gal@users.sourceforge.net>
# Original Home: http://modntlm.sourceforge.net/
# NetWare binary by: Guenter Knauf <info@gknw.de>
# Home: http://www.gknw.de/development/apache/
#


# Add to your httpd.conf

LoadModule ntlm_module modules/mod_ntlm.so

#
# Configuration for mod_ntlm
<IfModule mod_ntlm.c>
    <Location /protected/>
        AuthName "A Protected Place"
        AuthType NTLM
        NTLMAuth On
        NTLMAuthoritative On
        NTLMDomain UWSPDOM
        NTLMServer dc1
        NTLMBackup dc2
        require valid-user
    </Location>
</IfModule>
# End of mod_ntlm.


