auth_ldap
mike
mike503 at gmail.com
Tue Aug 19 02:50:31 MSD 2008
I am very interested in seeing this mature.
Well, only if it can work with Active Directory on a WinXP/Win2003
network. I would like to be able to use http auth using on our
intranet using LDAP (more specifically it would be best if I could use
Windows Integrated Authentication) - I'd be willing to pay some cash
if you want to tackle that!
On 8/18/08, Markus Teichmann <jmt at brian.han.de> wrote:
> Hello,
>
> as a new user to this list, I just want to contribute my little auth_ldap
> module. I hope you enjoy it. Here is an example conf file:
>
> http {
> # LDAP URI
> auth_ldap_uri "ldap://127.0.0.1";
>
> server {
> listen 80;
> server_name localhost;
>
> location / {
> # Realm
> auth_ldap "LDAP Request";
> # Search Base
> auth_ldap_dn "ou=People,dc=chaos,dc=jmt";
> # The Attribute searching for. Normaly this is uid or cn
> auth_ldap_attribute "uid";
> # Activate the authenticaten
> # require off; will disable the module.
> require ldap-user;
>
> root html;
> index index.html index.htm;
> }
> ...
>
> Also I have some questions during this coding. First of all is there a place
> for third party modules?
> And much more important for me: how does the async calling mechanism in
> nginx work? I've played around with NGX_AGAIN, but I doesn't got the
> expected result. So all the ldap code ist sync now. Would be nice to change
> this.
>
> Best Regards,
>
> Markus Teichmann
>
> --
> Markus Teichmann Tel: +49 172 301 31 56
> Knebelweg 16
> 31135 Hildesheim Email: jmt at brian.han.de
>
More information about the nginx
mailing list