跳到内容

如何设置Apache反向代理支持Websockets

  1. 首先将以下变量更改为 false www\software\html5\settings.js > W.xhrreverse = false; (如果您不将其更改为 false,它将始终尝试 xhr 而不是 websockets,这是我们不再想要的)

  2. 安装带有 proxy_wstunnel 支持的 Apache(不支持旧版没有 proxy_wstunnel 的 Apache!)

  3. 允许在 Apache 配置 (httpd.conf 等) 中使用以下模块。 LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so

  4. 假设您想通过子文件夹“/html5/”访问html5主门户,例如:http://your_ip_or_domain.net/html5/,并且Tsplus已安装在服务器“intranetxyz”的内部网中,则将以下内容添加到配置中(httpd.conf等)。

    ProxyPass /html5 http://intranetxyz:80 ProxyPassReverse /html5 http://intranetxyz:80

    ProxyPass “ws://intranetxyz:80/socket.io/websocket_https”

    ProxyPass “ws://intranetxyz:80/socket.io/websocket”

    ProxyPass “ws://intranetxyz:80/socket.io/flashsocket_https”

    ProxyPass “ws://intranetxyz:80/socket.io/flashsocket”

  5. 重启Apache以使更改生效。