我已在此post上读到Nginx不支持多个授权标头。
我想知道我是否会在http请求中检查一下 授权标题存在。
基本上我正在为我的网页添加一个基本身份验证,因为它尚未准备好进行生产。我的网站是单页面应用程序,我已在索引页面中成功添加了身份验证,但我的网站还具有登录功能。当我登录时,它一直要求进行身份验证。我是nginx的新手,我不太确定如何解决这个问题
location / {
root /path/to/my/app/root/folder;
index index.html index.php;
#I want to only executed these lines only on the index page and login page
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/.htpasswd;
}