Apache configuration to make NTLM authentication work through a Proxy

Posted by Nick Pierpoint on Server Fault See other posts from Server Fault or by Nick Pierpoint
Published on 2011-06-12T23:16:10Z Indexed on 2014/06/13 15:28 UTC
Read the original article Hit count: 571

Filed under:
|
|
|
|

I'm running an application server behind an Apache proxy with the following sort of thing in my Apache config:

ProxyPass        /app http://myapplication:8080/myapp
ProxyPassReverse /app http://myapplication:8080/myapp

When I switch on NTLM authentication (using mod_ntlm) the authentication fails (it works fine when bypassing the proxy). A quick search reveals lots of issues when running NTLM behind a proxy due to the connection-specific NTLM specification.

Does anyone have a working Apache configuration that allows NTLM authentication through a proxy?

Thanks for any help.

© Server Fault or respective owner

Related posts about apache-2.2

Related posts about proxy