您好,我试图设置nginx以减少我打开的端口数量
我正在尝试添加密码,而且我已经遍布整个网络,似乎无法让auth部分正常工作
我创建了一个.htpasswd文件并将其放在nginx conf文件夹中并将以下内容添加到该位置
location /nzbget {
proxy_pass http://127.0.0.1:6789;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
auth_basic "give it to me.";
auth_basic_user_file .htpasswd;
然而,当我尝试访问它时,我得到的是403禁止错误
请告诉我我做错了什么
答案 0 :(得分:0)
问题在于.htpasswd文件不是100%正确。
使用记事本创建它+解决了我的问题