NGINX Websocket 302(重定向)错误

时间:2016-10-01 18:46:11

标签: redirect nginx websocket sinatra

http://prntscr.com/coliya -Chrome http://prntscr.com/coljez -Opera

NGINX

for (int i = 0; i < bannedGoods.size(); i++)
{
    for (int j = 0; j < containers.size();) // NOTE: no j++ here
    {
        Container c = containers.get(j);
        if (c.contains(bannedGoods.get(i))
            c.removeContainer(j);
        else
            j++; // only if you don't remove the container increment
                 // j - when removing the next element gets current
                 // index
    }
}

我遇到的问题是,在尝试连接websocket时,某些计算机和某些浏览器被重定向。当出现302错误时,&#39; / *&#39;路线已被激活!正如您在重定向响应中看到的那样,此路由将用户重定向到登录页面.absbocket升级请求以某种方式转换为普通的http请求!这似乎是问题所在。可能导致这种情况的原因是什么?

0 个答案:

没有答案