使用nginx反向代理和auth basic的node-red超时

时间:2017-11-17 09:53:13

标签: node.js nginx proxy node-red

我将nginx配置为节点红色服务器的反向代理。一切正常,直到我将auth_basic添加到配置文件。

我收到登录信息,提示您接受详细信息而不会出现问题,并加载node-red管理页面。

但是在30秒内我得到“丢失了与服务器的连接”错误:/

nginx错误日志显示以下错误,该错误会一遍又一遍地重复。

[17/Nov/2017:20:35:00 +1100] "GET /comms HTTP/1.1" 401 188 "-" ...

我的nginx网站文件 -

server {
    listen 443 ssl;

    server_name my.domain.com;

    location / {
        auth_basic "Security";
        auth_basic_user_file /etc/nginx/.htpasswd;

        proxy_pass http://10.0.1.107:1880/;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }
}

任何帮助都将不胜感激。

感谢。

0 个答案:

没有答案