首頁 >運維 >Nginx >nginx認證怎麼實現

nginx認證怎麼實現

WBOY
WBOY轉載
2023-05-21 10:04:051497瀏覽

安裝httpd

yum install

使用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認證怎麼實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除