添加nginx地址匹配规则
location ^~ /encrypt/{
auth_basic "Authorized users only";
auth_basic_user_file /home/.htpasswd;
}
安装apache2-utils以使用htpasswd命令来生成哈希密码文件
apt install apache2-utils
htpasswd -bdc .htpasswd username password
大功告成,记得 nginx -s reload
哦