Assuming your auth module provides a REMOTE_USER variable in the context of the apache request, you probably need to provide a line like this:
RequestHeader set REMOTE_USER %{REMOTE_USER}s
In your reverse proxy configuration.
For example, the following configuration might be used in an SSPI configuration for Apache:
<VirtualHost>
<Location />
Order allow,deny
Allow from all
AuthName "FOO.COM"
AuthType SSPI
SSPIPackage NTLM
SSPIOfferSSPI On
SSPIAuth On
SSPIAuthoritative On
SSPIOmitDomain On
SSPIOfferBasic On
require valid-user
</Location>
# Proxy Configurations
ProxyVia On
ProxyPassInterpolateEnv On
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / http://foo.com:8000/
ProxyPassReverse / http://foo2.com:8000/
ProxyPassReverseCookieDomain foo.com foo2.com
ProxyPassReverseCookiePath / /
RequestHeader set REMOTE_USER %{REMOTE_USER}s
</VirtualHost>
... View more