我正在做一项新功能,允许在管理页面上显示系统日志。我正在使用 gevent-socketio (0.3.6)。在我的本地机器上一切正常,但是当我将代码部署到 EC2 时,它不起作用。
这是客户端代码:
// notification socketio
var socket_notification = io.connect('/notification');
// Update when we get new data from the server
socket_notification.on('data', function (data) {
$scope.notifications.push(data);
$scope.total_noti.push(data);
});
这就是我在 Firefox 控制台中看到的:
GET http://mybackend.com/socket.io/1/?t=1460013461586 200 OK 466ms
似乎套接字连接成功,但我无法从服务器获取任何东西。
这是我的后端代码:
@route(bp, '/socket.io/<path:remaining>')
def socketio(remaining):
print('connected')
try:
app = current_app._get_current_object()
socketio_manage(request.environ, {'/notification': LiveNotificationNamespace, '/log': LiveLogNamespace}, app)
except:
current_app.logger.error("Exception while handling socketio connection",
exc_info=True)
return Response()
我添加了一个打印命令来测试,但它不打印任何东西。我已经更新了 Varnish 配置以通过 Varnish 运行 websockets:
sub vcl_pipe {
if (req.http.upgrade) {
set bereq.http.upgrade = req.http.upgrade;
}
}
sub vcl_recv {
if (req.http.Upgrade ~ "(?i)websocket") {
return (pipe);
}
}
我需要在 EC2 或类似的东西上配置任何东西吗?
谢谢你。