1. 程式人生 > >nginx 訪問控制之 認證

nginx 訪問控制之 認證

htpasswd use auth 用戶 style nginx con class pre

安裝httpd

yum install -y httpd

使用htpasswd生產密碼文件

htpasswd -c /usr/local/nginx/conf/htpasswd aming
# -c 表示創建文件, aming是用戶名
# 當添加用戶時,需要去掉 -c 參數
# 修改密碼的方式和添加用戶的方式相同

配置nginx用戶認證

location  /admin/
  {
      auth_basic              "Auth";
      auth_basic_user_file   /usr/local/nginx/conf/htpasswd;
  }

nginx 訪問控制之 認證