假設/www/htdocs/ 為服務器根目錄,新建test目錄,當訪問test目錄時 需要身份驗證
1. # cd /etc/nginx/conf/htpassword
2. /usr/bin/htpasswd -c /usr/local/nginx/conf/htpasswd/test auth_user
3. # vi /etc/nginx/nginx.conf
server{
***
#test
location /test {
auth_basic "Restricted";
auth_basic_user_file /usr/local/nginx/conf/htpasswd/test;
}
****
}
現在如果繼續訪問test/目錄下的內容,就需要身份驗證,輸入auth_user 和 密碼就可以訪問
作者 依戀