I installed lighttpd for the first time from epel repo.
I changed user and group for the webserver and ran the lighttpd server. I can download a page with 200 small images in about a second.
If I enable ldap authentication with configuring ldap and adding the below, the requests start taking up to a minute with 5 second pause showing in firebug.
auth.require = ("/" =>
(
"method" => "basic",
"realm" => "here",
"require" => "valid-user"
)
)
Is this a known issue? I've tried about everything and I cannot make this issue go away.
Apache handled ~equivalent auth config without such issues.
The auth is working though. Prompt comes up and it accepts only correct credentials.