0

我正在尝试使用 websockets 与 Primus 连接:

WebSocket connection to 'wss://dev.dylaan.nl/primus/?_primuscb=1417355606238-6' failed: WebSocket opening handshake was canceled

我的 NodeJS 脚本:

var express     = require("express")
,   fs          = require("fs")
,   path        = require("path")
,   moment      = require("moment")
,   Primus      = require("primus")
,   compression = require("compression")
,   app         = express()
,   http        = require("http").createServer(app)
,   jsp         = require("uglify-js").parser
,   pro         = require("uglify-js").uglify
,   primus      = new Primus(http, { transformer: "websockets" });

客户:

var primus      = new Primus("wss://dev.dylaan.nl")

我是这种东西的新手,但我现在不知道出了什么问题,我已经阅读了 Primus 的文档,我也尝试过谷歌,但我可以找到答案。

当我更改为协议ws而不是wss我收到错误

Error during WebSocket handshake: Unexpected response code: 426

http 426 may mean that you are trying to connect with an unsupported websocket protocol version

Also, if you are connecting through a proxy, the proxy may remove the "upgrade" header from the request since it is marked as "connection" header. Switch to WSS:// to prevent that.

@ 意外响应代码:426 with PhanthomJS Websocket client/ROSLIB

好吧,我的 VPS 在一个 ngnix 反向代理后面。我无权访问。所以这就是我使用 wss 的原因。

演示:http ://dev.dylaan.nl/play

有人可以帮忙吗?

谢谢!

4

1 回答 1

0

在我看来,您的 nginx 服务器配置不正确,并且它阻塞了 WebSocket 连接,导致返回 400 错误。请参阅http://nginx.com/blog/websocket-nginx/了解如何配置服务器以允许 websocket 连接。

{ websocket: false }如果您无法让您的主机/vps 验证是否允许 WebSocket 连接,您可以通过在客户端代码中提供选项来完全关闭 Primus 中的 WebSocket :

new Primus("http://dev.dylaan.nl", { websocket: false })

我还注意到您使用wss/ws而不是httpPrimus 需要的,我们会自动将基于 HTTP 的 url 重写为正确的格式。

于 2014-12-15T08:24:04.823 回答