Nginx的安全配置
阿新 • • 發佈:2018-09-27
狀態 強制 tmp serve 共享 lai ron -- 我們 nginx的安全配置
Nginx_auth_basic_module 簡單認證
用"http basic authentication(簡單的認證)"來限制用戶的訪問
一般的用法
location / {
auth_basic string;
auth_basic_user_file /etc/nginx/conf.d/htpasswd;
}
Syntax: auth_basic string | off;
Default: auth_basic off;
Context: http, server, location, limit_except
使用基本的‘http basic authentication‘用戶名和密碼驗證
Syntax: auth_basic_user_file file;
Default: —
Context: http, server, location, limit_except
指定保存的用戶和密碼,格式如下
comment
name1:password1
name2:password2:comment
name3:password3