打开/关闭搜索
搜索
打开/关闭菜单
通知
打开/关闭个人菜单
查看“Nginx/HttpAuth”的源代码
来自OSSmedia
查看
阅读
查看源代码
查看历史
associated-pages
页面
讨论
更多操作
←
Nginx/HttpAuth
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
[[分类:教程]] 本文介绍如何配置 Nginx 的http basic auth == Ubuntu/debian == 软件包 sudo apt instal apache2-utils 创建密码文件 sudo htpasswd -c /etc/apache2/.htpasswd user1 创建第二个用户,因为文件已经存在,所以不需要 -c 参数 sudo htpasswd /etc/apache2/.htpasswd user2 == nginx 配置文件 == location /api { auth_basic "Administrator’s Area"; auth_basic_user_file /etc/apache2/.htpasswd; }
返回
Nginx/HttpAuth
。