Sure.
In the httpd.conf here's what I added after the various module enables:
<Location /helpdesk>
AuthName "Helpdesk"
AuthType SSPI
NTLMAuth On
NTLMAuthoritative On
NTLMOfferBasic On
NTLMDomain DOMAINNAME
NTLMOmitDomain On
<RequireAll>
<RequireAny>
Require valid-user
</RequireAny>
<RequireNone>
Require user "ANONYMOUS LOGON"
</RequireNone>
</RequireAll>
## returns domain\name
RewriteEngine On
RewriteCond %{LA-U:REMOTE_USER} (.+)
RewriteRule . - [E=RU:%1]
RequestHeader set REMOTE_USER %{RU}e
Proxypass ajp://localhost:8009/helpdesk
ProxyPassReverse ajp://localhost:8009/
</Location>
<Location /whd-web>
Proxypass ajp://localhost:8009/whd-web
ProxyPassReverse ajp://localhost:8009/
</Location>