Source code
Login
Home
Articles
Open-Source
Pictures
About Me
Documents
Hot
1
汇编第五章
2
unix文件
3
ubuntu使用root用户登陆14-15版本可用
4
PHP-GTK2-文档学习&翻译——教程部分表格布局使用GtkTable
5
解决LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏
6
时钟
7
php导出数据到xls文件
8
Windows GUI开发在控制台打印输出
9
Vim设置字体linux和windows
10
对象代理
Links
网易云课堂
简明现代魔法
看风景
果壳网看科技
下厨房
Redis官网
nginx官网
Mysql文档
持续集成项目travis-c...
在线图书创作Leanpub
PHP-CPP
值得推荐的C/C++库和框架
腾讯一个php
Jquery插件库网站
phpstorm免费注册码
Game And C 老外
owent-ACM-Cpp-...
开源应用程序架构
QTCN开发网
OAuth2协议
SwiftChinese
香草/Vanilla是一个基...
个人征信查询
A set of PHP l...
知行一 | 顶级C++社区
国外QT支持站
WebGL中文网-three...
UE4学习资源合集
https://www.ma...
cppcon
C++官方文档
C++中文友好文档
阿里云珍贵技术资料免费下载
LoL查询
opengl-tutoria...
WebGl版本支持检测网址
OpenGL API Doc...
Git 在团队中的最佳实践-...
A successful G...
GLAD- 比glew更好的...
OpenGL模型导入库-As...
WebGL-火狐doc
如何开发一款游戏:游戏开发流...
Shader
nodejs中文网
Dracula-A dark...
即时通讯网
https://apizza...
sweetalert
伯乐在线github
阿里巴巴免费图标
opengl特效
看见统计
codewars算法挑战1
leetcode算法挑战2
PHP列续松博客
electron-vue文档
Vue Cli 3.0
element-ui
翻墙
Golang ORM ——G...
访客地图
Module ngx_http_auth_basic_module
张成
2017/4
1577
# Module ngx_http_auth_basic_module HTTP基本认证 - Example Configuration - Directives - auth_basic - auth_basic_user_file ngx_http_auth_basic_module模块允许限制对资源的访问通过验证用户名和密码使用HTTP基本身份验证协议。 #### Example Configuration ``` location / { auth_basic "closed site"; auth_basic_user_file conf/htpasswd; } ``` #### Directives ``` Syntax: auth_basic string | off; Default: auth_basic off; Context: http, server, location, limit_except ``` 使用HTTP基本身份验证协议可以验证用户名和密码.参数作为一个标识,可以包含变量,特殊值off可以取消从上层配置继续的指令auth_basic效果。 ``` Syntax: auth_basic_user_file file; Default: — Context: http, server, location, limit_except ``` 指定一个文件,保存用户名和密码,按以下格式: ``` # comment name1:password1 name2:password2:comment name3:password3 ``` file可以包含变量。 支持下面的密码类型: crypt()函数加密,htpasswd工具或openssl passwd
上一篇:
转:或许是 Nginx 上配置 HTTP2 最实在的教程了
下一篇:
Module ngx_http_limit_req_module
Please enable JavaScript to view the
comments powered by Disqus.