nginx 引入LDAP验证

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 引入LDAP验证相关的知识,希望对你有一定的参考价值。

一、下载模块包
git clone https://github.com/kvspb/nginx-auth-ldap.git
二、nginx编译安装的时候,把模块编译进去。
./configure --add-module=path_to_http_auth_ldap_module
make install
三、在nginx主配置文件的http标签中添加如下代码
group_attribute People 这个是验证的时候,访问哪个组
http {
    ldap_server test2 {
        url ldap://172.16.6.13:389/DC=ptmind,DC=com?cn?sub?(objectClass=person);
        binddn "cn=ldap,dc=ptmind,dc=com";
        binddn_passwd xxxxxxxxx;
        group_attribute People;
        group_attribute_is_dn on;
        require valid_user;
    }
}
四、然后再起一个可以访问的server进行验证
server {
    listen 8000;
    server_name localhost;
    location / {
        root html;
        index index.html index.htm;
        auth_ldap "Forbidden";
        auth_ldap_servers test2;
    }
}
五、验证结果如下

技术分享

本文出自 “杜云龙” 博客,请务必保留此出处http://duyunlong.blog.51cto.com/1054716/1896137

以上是关于nginx 引入LDAP验证的主要内容,如果未能解决你的问题,请参考以下文章

nginx反向代理registry,用ldap做验证

Gitlab+Gerrit+Ldap+nginx+mysql 之Gerrit搭建与配置

如何通过 ldap 身份验证和授权将安全性应用于登录流程?

Spring boot Ldap 身份验证失败,LDAP 错误代码 49 - 80090308 数据 52e

ldap认证jupyter notebook

通过 LDAP 存储库验证 LDAP