in reply to Checking Windows Authentication
This will install the stuff you need for authentication. Then I put in my httpd.conf file this line where I wanted the authentication point to be:perl -MCPAN -e'shell' install Apache::AuthenSmb
you need to change PDC.domain to your PDC server and your domain along with changing the domian on the next line. Because it passes these variables through to the authentication script. Also in your open Location tag you need to specify the location (acording to the webserver like /). Location can also be replaced by file directive to allow authentication to a file.<Location > AuthName "Warning this is a restricted area" AuthType Basic PerlSetVar myPDC PDC.domain PerlSetVar myDOMAIN domain PerlAuthenHandler Apache::AuthenSmb require valid-user </Location>
|
---|