我可以分别使用Fancy Index(NGINX模块)和Auth_Basic,但是我很难让auth_basic和fancy indexing一起工作。这是我尝试使用的配置,但我仍然遇到401错误。任何帮助。
location /downloads {
fancyindex on;
fancyindex_exact_size off;
auth_basic “Administrator’s area;
auth_basic_user_file /etc/nginx/conf.d/local.htpasswd;
}