Hi,
I'm trying to set up Lighy as load balancer in front of 2 IIS webservers. It works fine for anonymous acces, but it fails with "Windows Integrated Authentication". Problem is that it browser asks for username + password, but they don't work.
I'm running the precompiled Windows vers 1.4.18.1. Tried to manually add some headers, but it doesn't help.
Any advice ?
proxy.balance = "hash"
proxy.debug = 1
proxy.server = ( "" => ( ( "host" => "192.168.2.1", "port" => 81) ,
( "host" => "192.168.2.2", "port" => 81) ) )
setenv.add-request-header = (
#"WWW-Authenticate" => "Negotiate"
"WWW-Authenticate" => "NTLM"
)
setenv.add-response-header = (
#"WWW-Authenticate" => "Negotiate"
"WWW-Authenticate" => "NTLM"
)
-Alex