跳到主要内容

无网络链接错误

如果用户在线编辑/预览文档时,在线编辑/预览页面报如下 并且浏览器的console报如下错误

这说明websocket连接有问题。Filez文档中台用到了websocket协议。从client 端到 server,如果中间有代理,都必须支持websocket。如果有Ngnix,也需要 加/ws 路由。

location /ws/{

        proxy_pass http://{zOffice-server-ip}:8001;

        proxy_http_version 1.1;

        proxy_set_header Upgrade $http_upgrade;

        proxy_set_header Connection "upgrade";

        proxy_set_header Host $host;

}