配置 nginx 的 basic auth 验证

Posted

tags:

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

参考技术A 1. 配置 nginx 的 basic auth 验证。

首先安装 httpd-tools,因为我们需要使用 htpasswd 工具。

使用 htpasswd -c -d file username 生产密码文件。重复输入两次你需要配置的密码后,文件生成。

2. 配置 nginx 的 basic auth。

修改对应 server 域或者 location 域的配置文件
示例为在 server 域添加 auth_basic 和 auth_basic_user_file 。

重启服务

Nginx认证

Nginx 的 ngx_http_auth_basic_module模块允许通过使用“HTTP基本认证”协议验证用户名和密码来限制对资源的访问。

配置举例:

location / {
    auth_basic           "closed site";
    auth_basic_user_file conf/htpasswd;
}

 

#生成htpasswd密码文件,并指定账号、密码

[[email protected] ~]# cd /usr/local/nginx/conf/

 [[email protected] conf]# htpasswd -bc /usr/local/nginx/conf/htpasswd username passwd
   Adding password for user username

 [[email protected] conf]chmod 400 htpasswd

   重启Nginx

 


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

nginx 添加basic auth

nginx配置auth_basic登录认证的方法

Nginx下配置Http Basic Auth保护目录

nginx安全: 配置http基本验证(Basic Auth)(nginx 1.18.0)

Nginx的安全配置

nginx 配置用户认证