nginx中的网站如何添加身份验证?
第一步:生成用户名和密码(必需在SSH中执行)
echo -e "用户名:$(openssl passwd -crypt 密码)" /www/wwwroot/AuthNginx.pl
第二步:在伪静态中添加以下两行
auth_basic Login..;auth_basic_user_file /www/wwwroot/AuthNginx.pl;
本文地址:http://www.iisidc.cn/help/678.html