WebSocket打开握手超时

时间:2015-12-09 11:27:58

标签: nginx websocket tornado google-compute-engine google-cloud-platform

我正在开发Google Cloud Compute Engine实例。 Ubuntu 12.04。 我在服务器端口8888上安装了一个Tornado应用程序,我有nginx配置,如下所示:

map $http_upgrade $connection_upgrade {
  default upgrade;
  ''      close;
}

upstream chat_servers {
    server 127.0.0.1:8888;
}

server {
    listen 80;
    server_name chat.myapp.com;

    access_log /home/ubuntu/logs/nginx_access.log;
    error_log /home/ubuntu/logs/nginx_error.log;

    location /talk/ {
        proxy_set_header X-Real-IP $remote_addr;  # http://wiki.nginx.org/HttpProxyModule
        proxy_set_header Host $host;  # pass the host header - http://wiki.nginx.org/HttpProxyModule#proxy_pass
        proxy_http_version 1.1;  # recommended with keepalive connections - http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_http_version
        # WebSocket proxying - from http://nginx.org/en/docs/http/websocket.html
        proxy_connect_timeout 7d;
        proxy_send_timeout 7d;
        proxy_read_timeout 7d;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;
        proxy_pass       http://chat_servers;

    }
}

当我尝试通过Javascript连接ws://chat.myapp.com/talk/etc/时,open()上的Tornado应用WebSocketHandler方法被调用,我在服务器上成功打印日志,但在客户端,代码永远不会进入onopen(),一段时间后我得到1006 error code, WebSocket打开握手超时。

此应用程序在具有相同配置的Amazon(AWS)EC2服务器上运行良好,但在我转移到Google Cloud后,无论如何都无法完成握手。

Google Cloud是否有特定的配置?或者文件上的任何nginx更新?

我很困惑,我在这上花了两天时间,却无法解决问题。

1 个答案:

答案 0 :(得分:2)

Ubuntu上的默认nginx版本是nginx/1.1.19。我将其更新为nginx/1.8.0。问题解决了。