Hello,
Trying to get Apache2 to use NIS authentication and it appears that the modules load but after providing a valid username and password at the "Basic" Apache authentication prompt it does not appect the login and logs:
PerlAuthenHandler Authen::Simple::NIS - No username was given.
to the Apache error_log.
The httpd.conf entries look like this:
PerlModule Authen::Simple::Apache
PerlModule Authen::Simple::NIS
PerlSetVar AuthenSimpleNIS_domain "VALID NIS DOMAIN"
...
OMITTED INFO
...
<Directory /opt/www/htdocs>
PerlAuthenHandler Authen::Simple::NIS
AuthType Basic
AuthName "IMS Password Required"
Require valid-user
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>
Server is Solaris 10 x86, with:
SSL enabled Apache/2.2.0 (Unix) mod_ssl/2.2.0 OpenSSL/0.9.8b mod_perl/2.0.2 Perl/v5.8.7 configured
Can someone give me advice as to what may be preventing the prompt dialog from passing the username/password informaiton to the PerlAuthenHandler? I did a snoop on the interface and did not even see the server try and communicate to the NIS server.
Thanks,
Kurt |