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

ngx_http_auth_basic_module模块实现让访问着,只有输入正确的用户密码才容许访问web内容。web上的一些内容不想被其余人知道,可是又想让部分人看到。nginx的http auth模块以及Apache http auth都是很好的解决方案。php

默认状况下nginx已经安装了ngx_http_auth_basic_module模块,若是不须要这个模块,能够加上 --without-http_auth_basic_module 。html

nginx basic auth指令

语法:     auth_basic string | off;
默认值:     auth_basic off;
配置段:     http, server, location, limit_exceptnginx

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

语法:     auth_basic_user_file file;
默认值:     —
配置段:     http, server, location, limit_exceptide

用户密码文件,文件内容相似以下:spa

 

nginx认证配置实例

 

备注:必定要注意auth_basic_user_file路径,不然会不厌其烦的出现403。code

生成密码server

能够使用htpasswd,或者使用opensslhtm

帐号:ttlsa
密码:123456blog

reload nginx

效果以下:

Apache

http_auth_basic_module

 

完成~

相关文章
相关标签/搜索