天天看点

nginx用户认证配置( Basic HTTP authentication)

默认情况下nginx已经安装了ngx_http_auth_basic_module模块,如果不需要这个模块,可以加上 --without-http_auth_basic_module 。

语法:     auth_basic string | off;

默认值:     auth_basic off;

配置段:     http, server, location, limit_except

默认表示不开启认证,后面如果跟上字符,这些字符会在弹窗中显示。

语法:     auth_basic_user_file file;

默认值:     —

用户密码文件,文件内容类似如下:

1

2

ttlsauser1:password1

ttlsauser2:password2:comment

3

4

5

6

7

8

9

10

11

12

13

server{

       server_name  www.ttlsa.com ttlsa.com;

        index index.html index.php;

        root /data/site/www.ttlsa.com;      

        location /

        {

                auth_basic "nginx basic http test for ttlsa.com";

                auth_basic_user_file conf/htpasswd;

                autoindex on;

        }

}

备注:一定要注意auth_basic_user_file路径,否则会不厌其烦的出现403。

生成密码

可以使用htpasswd,或者使用openssl

# printf "ttlsa:$(openssl passwd -crypt 123456)\n" >>conf/htpasswd

# cat conf/htpasswd

ttlsa:xyJkVhXGAZ8tM

账号:ttlsa

密码:123456

reload nginx

# /usr/local/nginx-1.5.2/sbin/nginx -s reload

效果如下:

nginx用户认证配置( Basic HTTP authentication)

http_auth_basic_module

完成~

继续阅读