Hello,
On my test server (FreeBSD 8.0-RELEASE), I was trying to reinstall Apache22 and include mod_authnz_ldap so I could test/learn about authentication with that module. I first did:
Then:
And I made sure I selected the option for mod_authnz_ldap. The apache22 port is reinstalled w/ no errors. I then look for it:
It's not there. I look further:
Still no dice. Strange, it looks like it should be installed:
Apache seems to disagree:
What am I doing wrong in terms of getting apache22 reinstalled w/ mod_authnz_ldap.so?
- Gavin
On my test server (FreeBSD 8.0-RELEASE), I was trying to reinstall Apache22 and include mod_authnz_ldap so I could test/learn about authentication with that module. I first did:
Code:
cd /usr/ports/www/apache22
make rmconfig
Code:
make deinstall
make reinstall
Code:
ls -aF /usr/local/libexec/apache22 | grep ldap
Code:
locate mod_authnz_ldap.so
Code:
cd /usr/ports/www/apache22
make showconfig | grep AUTHNZ_LDAP
AUTHNZ_LDAP=on "Enable mod_authnz_ldap"
Code:
httpd -M | grep auth
authn_file_module (shared)
authn_dbm_module (shared)
authn_anon_module (shared)
authn_default_module (shared)
authn_alias_module (shared)
authz_host_module (shared)
authz_groupfile_module (shared)
authz_user_module (shared)
authz_dbm_module (shared)
authz_owner_module (shared)
authz_default_module (shared)
auth_basic_module (shared)
auth_digest_module (shared)
- Gavin