Hi @Steven Shull,
Looking for further help on this.
We tried implementing the solution proposed in the link Authenticating with LDAP on IBM HTTP Server using mod_ldap - IBM Documentation but its not working.
While the configuration prompts for credentials as expected, we encounter a 500 Internal Server Error immediately after submitting them. Please see below screenshot for reference.
Your guidance on resolving this issue would be greatly appreciated.

Its not showing any errors in the error log. Below is the HTTP Server error log trace:
10.1.46.143 - - [29/May/2025:21:33:26 -0600] "HEAD /zipfiles HTTP/1.1" 401 - 236 +
10.1.46.143 - gagan.bansal [29/May/2025:21:33:27 -0600] "GET /attachments/systeminfo.png HTTP/1.1" 500 603 769004 -
10.1.46.143 - - [29/May/2025:21:33:35 -0600] "HEAD /maximo-x HTTP/1.1" 302 - 2382 +
We have made the below updates to the httpd.conf file to enable LDAP authentication. Please find attached httpd_conf.txt file for the full code in the httpd.conf file.
LoadModule ldap_module modules/mod_ldap.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
DocumentRoot "/apps/IBM/doclinks"
<Directory "/apps/IBM/doclinks">
LogLevel authnz_ldap:debug ldap:debug
LDAPTrustedGlobalCert CMS_KEYFILE /apps/IBM/HTTPServer/conf/ldap.kdb password
<Directory "/apps/IBM/doclinks">
AuthType Basic
AuthName "AD Protected Area"
AuthBasicProvider ldap
AuthLDAPURL "ldaps://adserver.company.com:636/OU=Accounts,DC=test,DC=local?sAMAccountName?sub"
AuthLDAPBindDN "CN=ldapaccount,OU=Accounts,DC=test,DC=local"
AuthLDAPBindPassword "password"
Require valid-user
</Directory>