Nginx创建基本认证(Basic Authorization)

Micheal Chen Lv6
  • 步骤一 : 创建用户名密码
1
2
3
4
5
# 安装htpasswd
apt install apache2-utils

# 创建用户名密码文件
htpasswd -dbc htpasswd.users user password
  • 步骤二 : Nginx配置
1
2
3
4
5
6
7
8
9
10
11
12
server {
listen 80;
server_name xxx.com;

location / {
auth_basic "Restricted Access";
auth_basic_user_file htpasswd.users;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8001;
proxy_next_upstream error timeout http_500;
}
}
  • Title: Nginx创建基本认证(Basic Authorization)
  • Author: Micheal Chen
  • Created at : 2025-03-29 17:58:55
  • Updated at : 2025-03-29 18:10:12
  • Link: https://www.xhis.com/hexo/2025/03/29/notes/Nginx创建基本认证/
  • License: This work is licensed under CC BY-NC-SA 4.0.
On this page
Nginx创建基本认证(Basic Authorization)