nginx-ldap-auth
nginx-ldap-auth copied to clipboard
Example of LDAP authentication using ngx_http_auth_request_module
Hey, i have problem with filter of ldap authorization(MS AD). Can you check it and tell me what did i do wrong? Thank you. ``` location = /auth-proxy { internal;...
Hello, in my company we can t build our docker images, would it be possible for you to push it on a public registry ? Greetings
Hi. If i use ldapsearch all requests are successful. But curl --location --request GET 'http://localhost:8888' --header 'X-Ldap-URL: ldap://test.local:389' --header 'X-Ldap-BaseDN: DC=test,DC=local' --header 'X-Ldap-BindDN: nginx_ldap' --header 'X-Ldap-BindPass: ****' --header 'X-Ldap-Template: (sAMAccountName=%(username)s)'...
Hello, I don't understand how the configuration could works by using only ``` proxy_cache auth_cache; proxy_cache_valid 200 10m; ``` When using HTTP Basic authorization by setting: ``` proxy_set_header Authorization $http_authorization;...
Hi, Is there any possibility that we can limit the ldap authentication to some specific group or user? Is this even possible with `nginx-ldap-auth` daemon? Sth simmilar to: `X-Ldap-Allowed-Usr/X-Ldap-Allowed-Grp` or...
I currently am getting the below error from LDAP-auth: ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'errno': 22, 'ctrls : [], 'info': 'Invalid Argument'} It appears to traceback to...
Hello @vl-homutov Can anyone please let me know if you tried any other way of providing the X-Ldap_BindPass instead of providing it in plain text. Committing the admin password to...
Hello We really really hope that nginx inc. does a **very much** better job developing the nginx product than what nginx touts as a reference implementation here. In case you...
Not all ldap servers have memberOf attribute. If you need to check that the user is in the group, you need to search by filter (memberUid=user) in this groupDN. I...